Skip to content

Instantly share code, notes, and snippets.

@teddyzetterlund
Last active August 29, 2015 14:00
Show Gist options
  • Save teddyzetterlund/f4030fcfb6e3e00f0705 to your computer and use it in GitHub Desktop.
Save teddyzetterlund/f4030fcfb6e3e00f0705 to your computer and use it in GitHub Desktop.
Adds a task directly to the OmniFocus inbox for each paragraph in the current clipboard.
set _clipboard to get the clipboard
set _tasks to paragraphs of _clipboard
tell application "OmniFocus"
tell default document
repeat with _task in _tasks
make new inbox task with properties {name:_task}
end repeat
end tell
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment