Skip to content

Instantly share code, notes, and snippets.

@ryoco
Created June 25, 2013 06:30
Show Gist options
  • Save ryoco/5856415 to your computer and use it in GitHub Desktop.
Save ryoco/5856415 to your computer and use it in GitHub Desktop.
1,5,10,60,120 分後に TODO を表示してくれる AppleScript です
display dialog "Input your TODO" default answer ""
set myMessage to text returned of result
set myList to {1, 5, 10, 60, 120}
set myMinutes to choose from list myList
delay myMinutes * 60
display dialog myMessage
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment