Jump to content

deanishe

Member
  • Posts

    8,759
  • Joined

  • Last visited

  • Days Won

    522

Everything posted by deanishe

  1. Well, you seem to be entering Navigation Mode instead of opening the application. Do you have any applications running that change the way the keyboard works?
  2. The app's pretty new, isn't it? They might add a scripting API at some point.
  3. You can probably forget about a workflow like the OF3 one. Sorted doesn't have a scripting API, nor easily readable data on disk.
  4. Why don't you remount the drive and find out? A location that changes on each mount is the reason Google Drive doesn't work properly with Spotlight. Like I said, Alfred uses the same index as Spotlight, so that won't help. The workflow obviously can't index the drive if you don't tell it where it is. Run ls -lR /path/to/the/folder in a shell. If that works, so should the workflow.
  5. We don't know which workflow you're talking about. Post a link. No. You can use older workflows with newer versions of Alfred, just not the other way around. Sometimes you might have to edit the workflow a bit. Change a "3" to a "4".
  6. The macOS clipboard supports multiple representations, so you can put RTF, HTML and Markdown on the clipboard at the same time. The application you paste into then chooses the format it prefers.
  7. Ah, right. No, the generated icons do not exist anywhere on disk. Almost none of Alfred's own icons exist on disk: they're generated in code, and only exist in RAM.
  8. Technically, yes, but your question doesn't really have anything to do with workflows. You want to know how to make your browser do something. If you can write a script that makes your browser do that, then you can almost certainly put it in a workflow and start a search from Alfred. So you first need to find out if your browser is (sufficiently) scriptable, and then precisely what you'd need to do to log in on the specific website you're talking about.
  9. That's the link I was looking for, but I couldn't find it. Thanks!
  10. Changing it to python2 will make no difference: on a normal system, it’s the same program as python. Changing python to python3 will break a lot of workflows because Python 3 isn’t very compatible with Python 2. The only real, long-term fix is to rewrite the workflows to work with Python 3.
  11. What generated icon? It's not clear what you're talking about. AFAIK, there is no button for Hotkeys.
  12. https://www.alfredforum.com/search/?q=migration assistant&quick=1
  13. How does your program determine what the source language is? Is your shell's locale set to French? Alfred's isn't. Another possibility is Unicode normalisation. Try normalising the text to NFC form before using it.
  14. Ah, right, I wasn't aware of that. Sorry, @Undertaker01.
  15. Then why don't you ask how to solve your problem first? What's so special about your issues that you don't need to bother asking "how do I?" and can skip straight to "add this for me"?
  16. Then create a category called "Pinned" and put the workflows in it. The whole "the Alfred team has very limited resources for implementing new features" message isn't really getting through to you, is it?
  17. They filter their own results. If you don't have "Alfred filters results" checked, Alfred passes the search query to the workflow script, and it should only return matching results. Then you'll have to implement it yourself, or use a shim script.
  18. Yeah. It works around Google Drive's rotten support for indexing by creating its own index of a volume based on standard FS metadata. In theory, it should work with any volume.
  19. The input to the script is correct. Your echo is removing the newlines from the script's output. This: echo $( /usr/local/bin/node transformer.js "$operation" "$inputString" ) should be this: /usr/local/bin/node transformer.js "$operation" "$inputString"
  20. Probably, but not particularly easily. I think you'd have to write your own shim script that sits between the workflow binary and Alfred, and implements filtering the way you want.
  21. There are several workflows that do this already. Please use the search before asking "is there a workflow for X".
  22. Why doesn't it try to list all the files on your system? Have you ever tried to do that?
  23. I don't know what input you're providing, but Alfred will only pass the plaintext version to a Universal Action set to accept Text.
×
×
  • Create New...