Skip to content

Instantly share code, notes, and snippets.

@jeredb
Created April 9, 2012 20:52
Show Gist options
  • Save jeredb/2346477 to your computer and use it in GitHub Desktop.
Save jeredb/2346477 to your computer and use it in GitHub Desktop.
System wide TaskPaper Clipper
(*
Run as Automator Service and add keyboard shortcut in "Keyboard" preference pane.
*)
on run {input, parameters}
tell application "TaskPaper"
tell front document
tell project named "Inbox"
make new entry with properties {name:"- " & input}
end tell
end tell
end tell
end run
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment