Planner is a time management tool for linux desktops. It combines the Pomodoro technique and a simple Todo list.
It works by having clients connect to a time server via websockets. This project represents a GNOME GUI client. In order to work it needs to connect to Planner time server.
- Download the flatpak package from the Releases page
flatpak install <path-to-downloaded-file>
Note: You will still need to install Planner time server sepparately, as the flatpak install only provides the GNOME client
Requirements
python3
websocket-client
python module- GNOME environment
ninja
meson
- Clone this repository
cd <path-to-project>
meson . build
sudo ninja -C build install
To configure the ip and port for the time server connection, use --ip
and --port
command line arguments.
planner --ip="127.0.0.1" --port="8888"
MIT