Created
December 16, 2013 08:15
-
-
Save filiptepper/7983785 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
#!/usr/bin/env ruby | |
$actions = [ | |
'Time to stand up.', | |
'Grab the ball.', | |
'Sit down.' | |
] | |
def take_action | |
current_action = $actions.shift | |
`terminal-notifier -message '#{current_action}' -title 'Get up, stand up!' -sound 'default'` | |
$actions << current_action | |
end | |
while true | |
take_action | |
sleep 60 * 20 | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment