Jump to content

evanfuchs

Member
  • Posts

    100
  • Joined

  • Last visited

  • Days Won

    2

Posts posted by evanfuchs

  1. I would like to search for folders by their exact name, and exclude other folders starting with or otherwise containing the search phrase.

     

    Say I have folders:

    Object

    Object 1

    Object 12

     

    And I have files:

    Object

    Object 1

    Object 12

     

    I want to search for "Object" and return all folder(s) with the exact name "Object", regardless of their paths/parent folders. I don't want any files returned and I don't want folders "Object 1" "Object 12".

     

    I can currently get all folders containing "Object" using a File Filter limited to File Type public.folder with Words and Split unchecked in the Field tab. Or I can check those boxes and the result will be limited to folders starting with "Object" but will also pull in "Object 1" "Object 12" etc.

     

    I thought there would be an obvious way to limit the results in the Value of the Field tab, but I'm not finding a way to make that work.

     

    Thanks

  2. On 7/20/2018 at 5:26 AM, robgill said:

    The Fix
    Go to 1Password settings > Advanced > Check the box for "Allow create of vaults outside of 1Password accounts"
    This does then create the necessary meta data and thus ties Alfred back to 1Password, you can unchecked this box again after this process and Alfred will still work with 1Password

     

    Hope that helps someone if you have a similar issue!

     

    This worked for me in a very similar situation. Used AppCleaner to remove 1Password after having switched to a 1password.com account. No combination of toggling worked until I enabled "Allow create of vaults outside of 1Password accounts" AND created a new item in the local vault. Then Alfred picked it up and I was able to uncheck "Allow create of vaults outside of 1Password accounts" and delete the local vault. All good. Thanks for circling back with your fix!

  3. 3 hours ago, tcurdt said:

    I want to run a workflow when something is getting copied into the clipboard.

    If the clipboard content matches a certain pattern I want to open a URL.

    Is this possible at all?

     

    If you happen to have Keyboard Maestro, it can trigger a macro based on the system clipboard.

  4. I use the TimeZones - a World Clock script filter workflow to look up times in US cities and it works great 👍

     

    I am looking for a workflow that lists the actual time zone instead (or in addition to) the Country/City format.

     

    For example, Denver, CO is listed in the TimeZones workflow as "Timezone: America/Denver":

     

    image.png.aed4df7e72a4e84762f44cb0761b14d7.png

     

    Does anyone know of a workflow that would list the time zone as Mountain Daylight Time (MDT) rather than America/Denver?

     

    Thanks

  5. I don't think this can be done within settings, but two workarounds:

     

    - If you have Keyboard Maestro it's simple to assign a "hot key trigger" (whatever key combo you want to use for Alfred) to a macro that simulates the keystroke that is already set in Alfred. For example, you can tell KM to fire command-space when you press x and it will show Alfred (if you have the Alfred Trigger set to command-space in settings)

     

    - Another solution would be to set up a Hotkey in Alfred that simulates a key combo using AppleScript. Like this to show Alfred :

     

    on alfred_script(q)
       tell application "System Events" to keystroke {Space} using {command down}
    end alfred_script

    Not sure if there are any downsides, like delay or conflicts, to doing it internally with Alfred using the Hotkey+AppleScript.

  6. 3 hours ago, juliosecco said:

    using BBedit or another text editor thst accepts regular expressions, you could do a search replace  this way:

     

    search string: ^([^\n]+)$

    replace string: \1,,\1

     

    Thanks. I can do it manually in Excel pretty easily, but I think regular expression replacement/substitution is the right track for a script/workflow solution. I just don't know how, but I'm trying to learn.

  7. Yes I found that after this post, which is fantastic. Thank you. I’d love to automate the process of converting my single column file:

     

    alpha

    beta

    gamma

     

    into three columns format to make Alfred happy:

     

    alpha, ,alpha

    beta, ,beta

    gamma, , gamma

     

    Thanks again. That list filter workflow is awesome. 

  8. I have a text file with phrases listed alphabetically, one per line. I'd like Alfred to display the lines in the ordered list and be able to copy the selected line to the clipboard. The list changes, so it would need to be read from the file or updated daily/manually.

     

    I've read some posts that may be close, but they are over my head so I'm pretty much lost. Can this be done without mad skills?

     

    Thanks

×
×
  • Create New...