Skip to content

Instantly share code, notes, and snippets.

@EvanLovely
Last active October 29, 2021 23:16
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save EvanLovely/39cd4cecad8ec50357f3 to your computer and use it in GitHub Desktop.
Save EvanLovely/39cd4cecad8ec50357f3 to your computer and use it in GitHub Desktop.
Create a new Apple Reminder due in 3 days with AppleScript
set _name to "name"
set _note to "note"
tell application "Reminders"
make new reminder with properties {name:_name, body:_note, due date:((current date) + 3 * days)}
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment