Created
April 9, 2012 20:52
-
-
Save jeredb/2346477 to your computer and use it in GitHub Desktop.
System wide TaskPaper Clipper
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(* | |
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