Skip to content

Instantly share code, notes, and snippets.

@gabriel-bezerra
Forked from pcreux/pomodoro
Created October 3, 2012 18:10
Show Gist options
  • Save gabriel-bezerra/3828697 to your computer and use it in GitHub Desktop.
Save gabriel-bezerra/3828697 to your computer and use it in GitHub Desktop.
Shell script Pomodoro timer for ubuntu unity
#!/bin/sh
#
# Pomodoro script.
#
# Displays a notification after 25 minutes.
#
# Don't forget to 'sudo apt-get install libnotify-bin'
#
# Shell script version by Gabriel Bezerra <gabriel.bezerra@gmail.com>
# based on the Ruby version by Philippe Creux at https://gist.github.com/1321896.
echo 'Go go go!'
notify-send -i face-cool 'Go go go!'
for i in $(seq 25 -1 1); do
echo $i
sleep 1m
done
echo 'End of Pomodoro!'
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