-
-
Save j0lvera/5570568 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 | |
# | |
# Pomodoro script. | |
# | |
# Displays a notification after 25 minutes. | |
# | |
# Don't forget to 'sudo apt-get install libnotify-bin' | |
# | |
system "notify-send -i face-cool 'Go go go!'" | |
25.times do |n| | |
puts 25 - n | |
sleep 60 | |
end | |
system "notify-send -i face-cool -t 0 'End of Pomodoro!'" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment