shithub: 9scripts

ref: d902702d8f6f774e4d8815cc162ae6662498293a
dir: /util/pomodoro/

View raw version
#!/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
}