Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save pathologicalhandwaving/06273b7014fbde318297 to your computer and use it in GitHub Desktop.
Save pathologicalhandwaving/06273b7014fbde318297 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