ref: b7084dac107fc28a73f55a4b3466d5ef10b2737b
dir: /util/pomodoro/
#!/bin/rc # usage pomodoro [worktime] [rest time] # defaults to 25 and 5 wtimesec=25 rtimesec=5 if(~ $# 2){ wtimesec=$1 rtimesec=$2 } wtime = `{echo $wtimesec * 60 | bc} rtime = `{echo $rtimesec * 60 | bc} echo running a pomodoro of $wtime and $rtime while( ){ echo GET TO WORK sleep $wtime echo You can now rest sleep $rtime }