- Work, short break, and long break sessions
- Customizable durations
- Desktop notifications when sessions end
- Optional automatic session switching
- Manual session progression mode
- Add, edit, delete tasks
- Toggle completion
- Task list persists across runs
- Keyboard-only interaction
- Minimalist interface
- Dynamic theming system (for Noctalia Shell users)
- Configuration saved locally
| Key | Action |
|---|---|
space |
Start or pause timer |
tab |
Change session type (when paused) |
a |
Toggle automatic session switching |
e |
Edit current session time |
r |
Reset timer |
t |
Open task list |
q |
Quit |
| Key | Action |
|---|---|
i |
Add new task |
enter |
Toggle task done |
e |
Edit selected task |
d |
Delete selected task |
j / ↓ |
Move down |
J |
Move task down |
k / ↑ |
Move up |
K |
Move task up |
t / esc |
Back to timer |
pomoru saves its state automatically when you quit.
Config file location:
~/.config/pomoru/config.toml
Saved data includes:
- Work and break durations
- Task list
Example:
work_time_mins = 25
short_break_mins = 5
long_break_mins = 15
auto_switch_sessions = true
[[tasks]]
title = "Read documentation"
is_done = falsePomoru exports its current state to:
~/.cache/pomoru/status.json
Example:
{
"text": " Work 24:31",
"tooltip": "Work",
"class": "work"
}This can be used by:
- Waybar
- Custom status bars
- Shell scripts
- Desktop widgets
The previously stated status.json can be used in Waybar as follows:
"custom/pomoru": {
"exec": "cat ~/.cache/pomoru/status.json",
"return-type": "json",
"interval": 1,
"format": "{text}",
"tooltip": true
}Download from the releases page:
https://github.com/RanXom/pomoru/releases
tar -xvf pomoru-1.0.0-x86_64.tar.gz
cd pomoru-1.0.0-x86_64
./pomoruTo install globally:
cd pomoru-1.0.0-x86_64
sudo cp pomoru /usr/local/bin/
pomoruyay -S pomoru # build from source
yay -S pomoru-bin # prebuilt binarygit clone https://github.com/RanXom/pomoru
cd pomoru
cargo run --releaseTo install the binary locally:
cargo install --path .- Rust
- ratatui
- crossterm
- tokio
- notify-rust
- serde + toml
MIT
