pomo โ Terminal Pomodoro Timer


A simple, customizable Pomodoro timer for your terminal, built with Bubble Tea.
Features
- ๐
Work and break timer sessions
- ๐ Real-time progress bar visualization
- โจ๏ธ Keyboard shortcuts to adjust time mid-session
- โธ๏ธ Pause and resume timer functionality
- ๐ฅ๏ธ Optional full screen or inline mode
- ๐ Cross-platform desktop notifications
- ๐จ Clean, minimal terminal UI
- ๐ ๏ธ Custom commands when timers complete
Usage
Work sessions:
pomo # Default work session (25m)
pomo 30m # Custom duration
Break sessions:
pomo break # Default break (5m)
pomo break 10m # Custom duration
Installation
Install with Go
go install github.com/Bahaaio/pomo@latest
Or, build from source
git clone https://github.com/Bahaaio/pomo
cd pomo
go build .
Alternatively, download pre-built binaries from the releases page.
Configuration
๐ Config file search order
pomo looks for its config file in the following order:
- Current directory:
pomo.yaml (highest priority)
- System config directory:
- Linux:
~/.config/pomo/pomo.yaml
- macOS:
~/Library/Application Support/pomo/pomo.yaml
- Windows:
%APPDATA%\pomo\pomo.yaml
- Built-in defaults if no config file is found
Example pomo.yaml:
fullScreen: true
work:
duration: 25m
title: work session
# cross-platform notifications
notification:
enabled: true
title: work finished ๐
message: time to take a break
icon: ~/my/icon
break:
duration: 5m
# will run after the session ends
then:
- spd-say 'Back to work!'
Check out pomo.yml for a full example with all options.
Key Bindings
| Key |
Action |
โ / k |
Increase time by 1 minute |
โ / j |
Decrease time by 1 minute |
Space |
Pause/Resume timer |
โ / h |
Reset to initial duration |
q / Ctrl+C |
Quit |
License
This project is licensed under the MIT License. See the LICENSE file for details.