A GoTomato TUI client written in Go
Find a file
Sebastian Mark f1071f33c6 feat: update keyboard handling to use new library
- remove dependency on atomicgo.dev/keyboard
- add dependency on github.com/eiannone/keyboard
- include keyhandling as non-blocking in frondend/main
- refactor keyhandler()

🤖
2024-10-29 20:22:22 +01:00
cmd/client fix: make ServerMessage channel unbuffered 2024-10-29 18:13:02 +01:00
internal feat: update keyboard handling to use new library 2024-10-29 20:22:22 +01:00
pkg/models fix: update GoTomato model field names 2024-10-28 07:56:37 +01:00
.gitignore Genesis 2024-10-23 17:43:44 +02:00
.renovaterc.json chore: add .renovaterc.json 2024-10-24 07:27:39 +02:00
ChronoTomato.go doc: remove outdated TODO comments 2024-10-29 18:11:06 +01:00
go.mod feat: update keyboard handling to use new library 2024-10-29 20:22:22 +01:00
go.sum feat: update keyboard handling to use new library 2024-10-29 20:22:22 +01:00
README.md feat: update module path 2024-10-23 21:21:23 +02: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.