Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save hanigamal/c26d2d63d7c6524e6253426e5c76b24d to your computer and use it in GitHub Desktop.
Save hanigamal/c26d2d63d7c6524e6253426e5c76b24d to your computer and use it in GitHub Desktop.
Add selected Text as new Reminder in Reminders.app
on run {input, parameters}
-- This code comes from http://raduner.ch/blog/
-- To be used with an Automator Service
-- ------------------------------------------------
set inputText to input as string
tell application "Reminders"
set newremin to make new reminder
set name of newremin to inputText
end tell
return input
end run
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment