A GoTomato TUI client written in Go
Find a file
Sebastian Mark b494c2782e refactor: merge client/helper package to client
- remove helper package and move functions to client package
- merge `terminalOutput()` to `view.go`
- move `desktopNotifications()` to `cmd/client`

🤖
2024-11-13 19:54:39 +01:00
cmd/client refactor: merge client/helper package to client 2024-11-13 19:54:39 +01:00
internal fix: preserve client password during reconnection process 2024-11-13 17:14:13 +01:00
pkg/models feat: reconnect on disconnect (add status to TUI) 2024-11-10 09:34:55 +01:00
.gitignore feat(goreleaser): add initial configuration for GoReleaser 2024-11-10 09:35:02 +01:00
.goreleaser.yaml feat: add release management via Task 2024-11-10 09:47:00 +01:00
.renovaterc.json fix(renovate): make Go deps always a "chore" 2024-11-10 17:04:04 +01:00
ChronoTomato.go doc: remove outdated TODO comments 2024-10-29 18:11:06 +01:00
go.mod feat: add progress bar to timer 2024-11-13 17:14:13 +01:00
go.sum feat: add progress bar to timer 2024-11-13 17:14:13 +01:00
README.md feat: update module path 2024-10-23 21:21:23 +02:00
Taskfile.yml feat: add release management via Task 2024-11-10 09:47:00 +01:00

ChronoTomato

A GoTomato command line client written in Go

Installation

go install git.smsvc.net/pomodoro/ChronoTomato@latest

Configuration

ChronoTomato can be configured via CLI parameters or a config file.

The configuration is loaded from ~/config/ChronoTomato.yml, here is an example:

url: ws://localhost:8080/ws
password: ""
config:
  work: 1500
  shortbreak: 300
  longbreak: 600
  sessions: 4

The url must be passed either via parameter or config file.
The password and the config are optional, the later can only be set via the configuration file.