ref: efb5a77be2a75caf6f67ffe69a30f82b05cb9fc9
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 }