A GoTomato TUI client written in Go
Find a file
Sebastian Mark bcda687c5e refactor: websocket client and closure variable
- update comments
- move `Done` variable to vars.go
- move `Connected()` method

🤖
2024-11-21 12:28:36 +01:00
cmd/client feat: update terminology from "Work" to "Focus" 2024-11-18 19:24:03 +01:00
internal refactor: websocket client and closure variable 2024-11-21 12:28:36 +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 chore: update module github.com/charmbracelet/bubbletea to v1.2.3 2024-11-21 12:28:36 +01:00
go.sum chore: update module github.com/charmbracelet/bubbletea to v1.2.3 2024-11-21 12:28:36 +01:00
README.md feat: update terminology from "Work" to "Focus" 2024-11-18 19:24:03 +01:00
Taskfile.yml feat(Taskfile): add check for clean working tree before release 2024-11-18 19:36:09 +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:
  focus: 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.