mirror of
https://github.com/rjNemo/pomodoro
synced 2026-06-10 09:36:40 +00:00
Move TUI logic to a new tui.go file, separating concerns and improving maintainability. Integrate terminal-notifier to display a notification when the timer completes on Darwin systems. Update README to include terminal-notifier as a requirement.
26 lines
385 B
Markdown
26 lines
385 B
Markdown
# Pomodoro Timer
|
|
|
|
A simple Pomodoro timer written in Go.
|
|
|
|
## Features
|
|
|
|
- Start a Pomodoro session from the command line
|
|
- Customizable session and break durations
|
|
|
|
## Usage
|
|
|
|
```sh
|
|
go run main.go
|
|
```
|
|
|
|
Or build and run:
|
|
|
|
```sh
|
|
go build -o pomodoro main.go
|
|
./pomodoro
|
|
```
|
|
|
|
## Requirements
|
|
|
|
- [Go](https://go.dev) 1.18+
|
|
- [terminal-notifier](https://github.com/julienXX/terminal-notifier)
|