Skip to content

Instantly share code, notes, and snippets.

@stormxuwz
Created March 4, 2017 03:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stormxuwz/49b8e9b6ec2398bfc94d2f1c770608ef to your computer and use it in GitHub Desktop.
Save stormxuwz/49b8e9b6ec2398bfc94d2f1c770608ef to your computer and use it in GitHub Desktop.
oo.scpt
-- LaunchBar Action Script
-- apple script to append launchbar input to the last line of omnioutliner
on handle_string(_string)
tell application "OmniOutliner 4.6.1"
set theDocument to the front document
set newRow to make new row at last row of front document
set topic of newRow to _string
outdent newRow
save theDocument
end tell
end handle_string
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment