blob: fa14cca061809c1be0f7d3abd02bea4128b2c77c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/bin/sh
notif() { notify-send -t 1000 "pomo" "$1"; sleep 1; }
for msg in "three" "two" "one"
do notif "$msg"
done
while true
do
notif "<b>START</b>"
date +%R
sleep 20m
notify-send -u critical -t 5000 "pomodoro" "BREAK TIME"
sleep 5m
done
|