mirror of
https://github.com/elkowar/dots-of-war.git
synced 2024-11-06 11:22:23 +00:00
7 lines
169 B
Bash
7 lines
169 B
Bash
|
#!/bin/dash
|
||
|
if [ -z "$1" ]; then
|
||
|
echo "timer.sh <time>"
|
||
|
exit 1
|
||
|
fi
|
||
|
termdown -o /home/leon/scripts/remainingTime.txt "$1" && notify-send "Timer" "Timer finished: $1"
|