real pomodoro

This commit is contained in:
Frank Villaro-Dixon 2013-11-11 13:26:57 +01:00
parent 5bb957653c
commit 9c65e363ed

21
Utils/pomodoro Executable file
View file

@ -0,0 +1,21 @@
#!/bin/bash
function DISP
{
xsetroot -name "$1"
}
TIME=$1
TIME=`echo $TIME*60|bc`
while [ $TIME -gt 0 ]; do
min=`echo "$TIME/60" | bc`
sec=`echo "$TIME%(60)" | bc`
DISP "Pomodoro time: $min:$sec left !"
sleep 1
((TIME--))
done