pomo

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

commit a78d6f77312a71e70b5e0815f80114f1fa8d07cd
parent dd1332e6cb149fc13a4964374848d4d52d4899a3
Author: NunoSempere <nuno.sempere@protonmail.com>
Date:   Thu, 24 Aug 2023 11:04:58 +0200

increase pomodoro intervals.

Diffstat:
Apomo | 0
Mpomo.c | 18+++++++++---------
2 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/pomo b/pomo Binary files differ. diff --git a/pomo.c b/pomo.c @@ -3,8 +3,8 @@ #include <time.h> #include <unistd.h> -#define MAX_MSG_LEN 100 #define LEN(a) (sizeof(a) / sizeof(a[0])) +#define MAX_MSG_LEN 100 typedef struct { unsigned int t; @@ -12,14 +12,14 @@ typedef struct { } Timers; static Timers timers[] = { - { 1500, "Time to start working!" }, - { 300, "Time to start resting!" }, - { 1500, "Time to start working!" }, - { 300, "Time to start resting!" }, - { 1500, "Time to start working!" }, - { 300, "Time to start resting!" }, - { 1500, "Time to start working!" }, - { 900, "Time to take a longer rest!" }, + { 2400, "Time to start working!" }, + { 600, "Time to start resting!" }, + { 2400, "Time to start working!" }, + { 600, "Time to start resting!" }, + { 2400, "Time to start working!" }, + { 600, "Time to start resting!" }, + { 2400, "Time to start working!" }, + { 1800, "Time to take a longer rest!" }, }; void spawn(char* argv[])