From: Silvio Rhatto Date: Thu, 24 May 2018 22:14:07 +0000 (-0300) Subject: Support for looping alarms such as a pomodoro timer X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=abb0a804c84b8a02aa889172c0e8558aed4a55fd;p=utils-x11.git Support for looping alarms such as a pomodoro timer --- diff --git a/xalarm b/xalarm index 9405ce1..dd54183 100755 --- a/xalarm +++ b/xalarm @@ -52,7 +52,7 @@ function xalarm_cancel { # Usage function xalarm_usage { - echo "usage: $BASENAME [list|cancel|kill|help|usage] [timedef] [message]" + echo "usage: $BASENAME [list|cancel|kill|help|usage|loop] [timedef] [message]" exit 1 } @@ -63,6 +63,11 @@ elif [ "$1" == "cancel" ] || [ "$1" == "kill" ]; then xalarm_cancel $2 elif [ "$1" == "help" ] || [ "$1" == "usage" ]; then xalarm_usage +elif [ "$1" == "loop" ]; then + shift + while true; do + xalarm_set $* + done else xalarm_set $* fi