blob: 4a60a84da3f694d041b5d863f58ac4f9f5834533 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
#!/bin/sh
TIMER_PATH="/home/melvin/.timer"
if [ "$1" = "run" ]; then
# relax if zero at start
if [ "$(cat "$TIMER_PATH")" -le "0" ]; then
echo "$TIMER_PATH" | entr -npz true
fi
while true; do
curr=$(cat "$TIMER_PATH")
next=$((curr - 5))
echo $next | tee "$TIMER_PATH"
if [ "$next" -le "0" ]; then
notify-send "Timer ended"
echo 0 | tee "$TIMER_PATH"
echo "$TIMER_PATH" | entr -npz true
fi
sleep 5
done
elif [ "$1" = "get" ]; then
curr=$(cat "$TIMER_PATH")
if [ "$curr" -gt "3600" ]; then
str="$((curr / 3600)):$(((curr % 3600) / 60))h"
elif [ "$curr" -gt "60" ]; then
str="$((curr / 60)):$((curr % 60))m"
else
str="${curr}s"
fi
echo "$str"
elif [ "$1" = "set" ]; then
num=$(printf "%s" "$2" | head -c-1)
unit=$(printf "%s" "$2" | tail -c1)
if [ "$unit" = "h" ]; then
secs=$((num * 3600))
elif [ "$unit" = "m" ]; then
secs=$((num * 60))
else
secs=$num
fi
echo "$secs" | tee "$TIMER_PATH"
elif [ "$1" = "inc" ]; then
curr=$(cat "$TIMER_PATH")
next=$((curr + 300))
echo $next | tee "$TIMER_PATH"
xsetroot -name "$(stats quick)"
elif [ "$1" = "dec" ]; then
curr=$(cat "$TIMER_PATH")
next=$((curr - 300))
echo $next | tee "$TIMER_PATH"
xsetroot -name "$(stats quick)"
fi
|