Fix pomodoro break timers

This commit is contained in:
Talia 2022-06-02 15:29:54 +02:00
parent 1f486a03d3
commit a047008c80
1 changed files with 3 additions and 3 deletions

View File

@ -15,11 +15,11 @@ do
sleep $((60 * 25))
if [ 4 -eq "$i" ]
then
say "Take a short break... 💤"
sleep $((60 * 5))
else
say "Take a longer break... 💤"
sleep $((60 * 15))
else
say "Take a short break... 💤"
sleep $((60 * 5))
fi
done
done