Skip to content

Instantly share code, notes, and snippets.

@pcreux
Created October 28, 2011 08:51
Show Gist options
  • Star 8 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save pcreux/1321896 to your computer and use it in GitHub Desktop.
Save pcreux/1321896 to your computer and use it in GitHub Desktop.
Pomodoro timer for ubuntu unity
#!/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!'"
@bDrwx
Copy link

bDrwx commented Jan 24, 2015

Thanks. Zen ...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment