pomo

A simple pomodoro timer
Log | Files | Refs | README | LICENSE

commit fbbe49e7add3e52ad636ddf64530e3a5bc6ad7c8
parent 91265cc0990ac44347b78e0960a8faace24e6bcb
Author: NunoSempere <nuno.sempere@protonmail.com>
Date:   Mon, 21 Aug 2023 11:11:57 +0200

formatting list of timers tweak.

Diffstat:
Mpomo.c | 8++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/pomo.c b/pomo.c @@ -14,13 +14,13 @@ typedef struct { static Timers timers[] = { /* timer(s) comment */ { 1500, "Time to start working!" }, - { 300, "Time to start resting!" }, + { 300, "Time to start resting!" }, { 1500, "Time to start working!" }, - { 300, "Time to start resting!" }, + { 300, "Time to start resting!" }, { 1500, "Time to start working!" }, - { 300, "Time to start resting!" }, + { 300, "Time to start resting!" }, { 1500, "Time to start working!" }, - { 900, "Time to take a longer rest!" }, + { 900, "Time to take a longer rest!" }, }; void spawn(char* argv[])