Skip to content

Instantly share code, notes, and snippets.

@waynezhang
Last active December 18, 2015 08:48
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 waynezhang/5756493 to your computer and use it in GitHub Desktop.
Save waynezhang/5756493 to your computer and use it in GitHub Desktop.
Save Current URL To Reminders
tell application "Safari"
set theTitle to name of current tab of front window
set theURL to URL of current tab of front window
end tell
tell application "Reminders"
tell default list
make new reminder with properties {name:theTitle, body:theURL}
end tell
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment