impomoro is a simple cross-platform pomodoro timer written in Go with fyne as a GUI framework.
Initially, it was planned to use the ImGui framework for the GUI. That's how the name turned out — ImGui + pomodoro. Then a different framework was chosen, but the name remained.
- Provides two configurable ranges of work and rest timers.
- Displays system notifications at the end of each of the timers.
- Supports the system tray as an experimental feature.
Download the package from the releases section and install it according to your OS.
The utility is built for the following operating systems:
- Linux
- macOS
- FreeBSD
- Windows
The configuration is stored in a YAML configuration file located in the user's home directory in the .impomoro
directory. For example, in Linux systems it will be ~/.impomoro
.
The first time you run it, a configuration file with default settings is created in the directory. Also, an icon file is generated next to it, which is used to display system notifications.
The configuration file is called config.yml
:
# Window settings
display:
width: 400
height: 100
# Period length settings in minutes
time:
longTime: 25
shortTime: 5
# System settings
system:
# Turns on the system tray
enableTray: false
Turn the enableTray
parameter of the configuration file to true
to enable the system tray.
Attention! In some environments, it may work uncorrectly. For example, in Gnome.
When the tray is turned on, the close window button will minimize it to the tray, and not close the application.
MIT License, see LICENSE.