Skip to content

Instantly share code, notes, and snippets.

@connor
Created May 11, 2013 06:18
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 connor/5559081 to your computer and use it in GitHub Desktop.
Save connor/5559081 to your computer and use it in GitHub Desktop.
Alert'ing the open to-dos for the day in Things.app
tell application "Things"
repeat with td in to dos of list "Today"
set tdName to the name of td
set tdStatus to the status of td
if tdStatus = open then
display dialog tdName
end if
end repeat
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment