You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
382 B
26 lines
382 B
#!/bin/bash |
|
|
|
PLAYSOUND=true |
|
PLAYER=mpv |
|
FILE="/usr/share/sounds/freedesktop/stereo/message.oga" |
|
|
|
seconds=${1:-180} |
|
echo "Counting down from $seconds" |
|
Msg=${2} |
|
|
|
let "i = $seconds" |
|
while [ $i -gt 0 ]; do |
|
echo $i |
|
let i-- |
|
sleep 1 |
|
done |
|
|
|
notify-send --icon=diaglog-information "Countdown Timer finished!" "${Msg}" |
|
|
|
echo "${Msg}" |
|
echo "" |
|
echo "" |
|
|
|
if ($PLAYSOUND); then |
|
$PLAYER $FILE |
|
fi
|
|
|