README.md (919B)
1 # pomo - a simple pomodoro timer 2 3 ## about 4 5 pomo is a simple timer that uses the pomodoro technique. It is based on [spt](https://github.com/pickfire/spt), which is a bit less simple. 6 7 ## dependencies 8 9 Instead of inotify, this pomodoro timer uses [sent](https://tools.suckless.org/sent/), displaying messages to the user by spawning a process that calls `echo 'msg' | sent`. 10 11 ## installation 12 13 Read pomo.c, then: 14 15 ``` 16 make 17 sudo make install 18 ``` 19 20 ## usage 21 22 In a terminal, call the "pomo" command. Then, an initial message will appear in its own window. Close it and start working. By default, the timer runs by 4 pomodoro timer (25 mins) with subsequent rests in between (5 mins) followed by a long rest (15 mins) in an infinite loop. 23 24 ## configuration 25 26 read through the <60 lines of C, and change as appropriate. If this functionality is too simple, consider looking at [spt](https://github.com/pickfire/spt) instead.