From a055db70f43993acaf6a42335f8a76468fa63061 Mon Sep 17 00:00:00 2001 From: "Yann Esposito (Yogsototh)" Date: Sat, 16 Jul 2011 11:18:15 +0200 Subject: [PATCH] Fixed big issue concerning pause time --- podomoro.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/podomoro.sh b/podomoro.sh index 2061b5a..00e3ca9 100755 --- a/podomoro.sh +++ b/podomoro.sh @@ -89,9 +89,9 @@ while (true) { print -n "\nTime for a break." notify "Time for a break." if ((nb++ % 4 == 0)); then - RELAX_TIME=$SHORT_RELAX_TIME - else RELAX_TIME=$LONG_RELAX_TIME + else + RELAX_TIME=$SHORT_RELAX_TIME fi timer $RELAX_TIME }