Jump to content

jmjeong

Member
  • Posts

    86
  • Joined

  • Last visited

  • Days Won

    6

Posts posted by jmjeong

  1. That's awesome, I will use it very often!

     

    However, it is not working on my side. Trying to execute the python script on command line, I get:

     

    python main.py "test"
    Traceback (most recent call last):
      File "main.py", line 31, in <module>
        keyword = ",".join([o['config']['keyword'] for o in plist['objects'] if 'alfred.workflow.input' in o['type'] ])
    KeyError: 'keyword'
    

     

     

    Any idea how to fix this?

     

    Cheers

     

    I uploaded the extension again. 

  2. How can I get the value of sync path?

    I am making the extension to handle alfred-extension. Instead user set this value again, it would be better to read and set this value in this extension.

    I found the alternative solution.  Just find  the parent directory of the extension, and it is file location of extension.

  3. Browse and Manage alfred extension (Download)

     

    Search and manage the installed extension.

     

    screenshot.png

     

    Usage

     

    alf :: display the installed extensions
    alf <search> :: search extension by title, author name, and keyword

    enter :: Browse the installed folder in Alfred
    ctrl :: Reveal the installed folder in Finder
    shift :: Execute extension with the first keyword
    cmd :: Open terminal in the installed folder
    opt:: Export the extension for distribusion (Default: ~/Downloads, you can refine it in export.json file)


    export.json

     

    The file format is as follows:

     

    {
    "workflow-export" :
    {"directory" : "~/git/alfred-extension/managealfredextension",
    "enable": true},
    "source-export":
    {"directory" : "~/git/alfred-extension/managealfredextension",
    "enable": false}
    }
     

    'workflow-export' specifies the directory where .alfredworkflow is exported. 'source-export' specifies the directory where extension source is copied.

     

     

    Version History

     

     

    2.8 - July 16, 2014

     

    • Handles the title and author having space

     

    2.6 - April 11, 2013

    • Handle subdirectory during export

    2.5 - April 8, 2013

    • Display hotkey information
      • Hotkey information is borrowed from (com.help.shawn.rice) by Shawn Rice

    2.4 - April 1, 2013

    • Fix a bug about pathname with space

    2.3 - March 31, 2013

    • Sort title by alphabetically

    2.2 - March 29, 2013

    • Export feature : Default directory is ~/Downloads
    • Toggle extensions with fn modifier
    • Fix a bug in export function

    2.0 - March 29, 2013

    • Export feature
    • Open terminal
    • Support Alleyoop's auto update plugin
    • Display 'disabled' extension

    1.x - March 28, 2013

    • Initial version
  4. Gordon, workflows are located inside of the Alfred.alfredpreferences file located in ~/Library/Application Support/Alfred 2, unless you set up syncing for another path. Then it would be inside of that path.

     

    How can I get the value of sync path?

    I am making the extension to handle alfred-extension. Instead user set this value again, it would be better to read and set this value in this extension.

×
×
  • Create New...