README.md (769B)
1 # pracomer 2 3 A Pomodoro timer for the terminal. Alternates between work and break intervals, printing the current status and sending desktop notifications at each transition. 4 5 ## Building 6 7 ```sh 8 zig build 9 ``` 10 11 ## Usage 12 13 ```sh 14 pracomer [-t <minutes>] [-b <minutes>] [-s] [--file <path>] 15 ``` 16 17 ### Options 18 19 | Flag | Default | Description | 20 |------|---------|-------------| 21 | `-t <minutes>` | `26` | Work interval length in minutes | 22 | `-b <minutes>` | `4` | Break interval length in minutes | 23 | `-s` | — | Disable desktop notifications | 24 | `--file <path>` | — | Write current status to a file (useful for status bars) | 25 | `-h` | — | Show help | 26 27 ### Controls 28 29 | Key | Action | 30 |-----|--------| 31 | `p` | Pause / resume | 32 | `r` | Reset current interval | 33 | `q` | Quit |