ref: 6c7aaecff8d23231e45e81448c494f85b4e94aaf
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
}