{"id":50780045,"url":"https://github.com/pchomik/pomotimer","last_synced_at":"2026-06-12T02:31:03.502Z","repository":{"id":362146276,"uuid":"1247053105","full_name":"pchomik/pomotimer","owner":"pchomik","description":"Pomodoro timer","archived":false,"fork":false,"pushed_at":"2026-06-02T20:56:44.000Z","size":65,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-06-02T22:26:35.647Z","etag":null,"topics":["focus-timer","pomodoro","productivity","rust","rust-lang","timer"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/pchomik.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-05-22T21:11:33.000Z","updated_at":"2026-06-02T20:56:48.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/pchomik/pomotimer","commit_stats":null,"previous_names":["pchomik/pomotimer"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/pchomik/pomotimer","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pchomik%2Fpomotimer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pchomik%2Fpomotimer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pchomik%2Fpomotimer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pchomik%2Fpomotimer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pchomik","download_url":"https://codeload.github.com/pchomik/pomotimer/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pchomik%2Fpomotimer/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34226629,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-12T02:00:06.859Z","response_time":109,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["focus-timer","pomodoro","productivity","rust","rust-lang","timer"],"created_at":"2026-06-12T02:31:02.851Z","updated_at":"2026-06-12T02:31:03.497Z","avatar_url":"https://github.com/pchomik.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🍅 Pomotimer\n\nA terminal-based Pomodoro timer for **Windows**, built with Rust. Features a minimal TUI, configurable work/break intervals, desktop notifications, and persistent session history via SQLite.\n\n## Features\n\n- **Pomodoro workflow** — Work, short break, and long break phases with automatic cycling\n- **Tabbed interface** — Switch between timer view and statistics\n- **Desktop notifications** — Alerts when a phase completes (configurable messages)\n- **Persistent history** — Every completed session is stored in a local SQLite database\n- **Statistics dashboard** — Visual bar charts showing daily and monthly focus time, with pagination to browse past periods\n- **Configurable** — Timer durations, notification preferences, and auto-start all adjustable via TOML config\n\n\u003cimg src=\"docs/timer.png\" width=\"800\"\u003e\n\n## Keybindings\n\n### Timer tab\n\n| Key     | Action              |\n| ------- | ------------------- |\n| `space` | Start / Pause       |\n| `s`     | Stop cycle          |\n| `r`     | Reset current phase |\n| `n`     | Skip to next phase  |\n| `t`     | Open Statistics tab |\n| `q`     | Quit                |\n\n### Statistics tab\n\n| Key | Action                                                |\n| --- | ----------------------------------------------------- |\n| `t` | Return to Timer tab                                   |\n| `s` | Toggle between daily (Week) and monthly (Month) scale |\n| `n` | Scroll forward one page (next days / months)          |\n| `p` | Scroll backward one page (previous days / months)     |\n| `r` | Reset view to current week                            |\n| `q` | Quit                                                  |\n\n\n## Configuration\n\nOn first launch, a default config file is created at:\n\n```\n%USERPROFILE%\\.config\\pomotimer\\config.toml\n```\n\n```toml\n[timer]\nwork_mins = 25\nshort_break_mins = 5\nlong_break_mins = 15\nlong_break_after_sessions = 4\nauto_start = false\n\n[notifications]\nenable = true\nwork_done_msg = \"Time for a break!\"\nbreak_done_msg = \"Back to work!\"\n```\n\n## Data Storage\n\nCompleted iterations are recorded in a SQLite database at:\n\n```\n%USERPROFILE%\\.local\\share\\pomotimer\\pomotimer.sqlite3\n```\n\nEach entry stores the phase type, duration, and timestamps for later review in the Statistics tab.\n\n## Installation\n\n### Option 1 — Download from GitHub Actions\n\nPre-built `pomotimer.exe` is available as a build artifact from the latest CI run on the `main` branch. Go to **Actions → Rust → latest workflow → Artifacts** and download `pomotimer.exe`.\n\n### Option 2 — Build from source\n\n```bash\ngit clone https://github.com/\u003cyour-username\u003e/pomotimer\ncd pomotimer\ncargo build --release\n.\\target\\release\\pomotimer.exe\n```\n\n## License\n\nThis project is licensed under the GNU General Public License v3.0. See the [LICENSE](LICENSE) file for details.\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpchomik%2Fpomotimer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpchomik%2Fpomotimer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpchomik%2Fpomotimer/lists"}