Skip to content

Instantly share code, notes, and snippets.

@jacksonfox
Created November 8, 2011 17:44
Show Gist options
  • Save jacksonfox/1348502 to your computer and use it in GitHub Desktop.
Save jacksonfox/1348502 to your computer and use it in GitHub Desktop.
A very simple AppleScript extension to add tasks to TaskPaper from Aflred
on alfred_script(q)
tell application "TaskPaper"
tell front document
tell project named "Inbox"
make new entry with properties {name:"- " & q}
end tell
end tell
end tell
end alfred_script
@jacksonfox
Copy link
Author

To install:

  • Open Alfred preferences
  • Click on Extensions
  • Click on Applescript
  • Follow the instructions from there...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment