mirror of
https://github.com/rjNemo/pomodoro
synced 2026-06-11 01:46:39 +00:00
- Updated dependencies in go.mod and go.sum to latest versions. - Added README.md with usage instructions and requirements. - Added justfile with build, run, and dev tasks. - Updated .gitignore to exclude tmp/ directory.
25 lines
298 B
Markdown
25 lines
298 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 1.18+
|