-
-
Save ryoco/5856415 to your computer and use it in GitHub Desktop.
1,5,10,60,120 分後に TODO を表示してくれる AppleScript です
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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