Skip to content

Instantly share code, notes, and snippets.

@jeredb
Created April 9, 2012 20:52

Revisions

  1. jeredb renamed this gist Apr 9, 2012. 1 changed file with 0 additions and 0 deletions.
    File renamed without changes.
  2. jeredb created this gist Apr 9, 2012.
    15 changes: 15 additions & 0 deletions Clipper
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,15 @@
    (*

    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