From 9001cd2124c665abcedf359ef77507e301ea9e8e Mon Sep 17 00:00:00 2001 From: Raymaekers Luca Date: Mon, 9 Oct 2023 14:58:43 +0200 Subject: fixed: notification not staying long enough changed the delay from seconds to minutes through multiplying by 60. --- bin/extra/pomo | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'bin/extra') diff --git a/bin/extra/pomo b/bin/extra/pomo index 2627628..0971343 100755 --- a/bin/extra/pomo +++ b/bin/extra/pomo @@ -14,12 +14,12 @@ do sleep 20m if [ "$i" -eq 3 ] then - i=-1 - notify-send -u critical -t 20000 "pomodoro" "GIGA BREAK TIME" + notify-send -u critical -t 1200000 "pomodoro" "GIGA BREAK TIME" sleep 20m + i=0 else - notify-send -u critical -t 5000 "pomodoro" "BREAK TIME" + notify-send -u critical -t 300000 "pomodoro" "BREAK TIME" sleep 5m + i=$((i+1)) fi - i=$((i+1)) done -- cgit v1.2.3