gitextract_2xxpwi1o/ ├── .bumpversion.cfg ├── .envfile ├── .github/ │ └── workflows/ │ ├── lint.yml │ ├── release.yml │ └── test.yml ├── .gitignore ├── .pre-commit-config.yaml ├── AUTHORS ├── CHANGELOG.md ├── COPYING ├── Dockerfile ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── data/ │ ├── applications/ │ │ └── tomate-gtk.desktop │ ├── media/ │ │ ├── alarm.ogg │ │ └── clock.ogg │ └── plugins/ │ ├── alarm.plugin │ ├── alarm.py │ ├── autopause.plugin │ ├── autopause.py │ ├── breakscreen.plugin │ ├── breakscreen.py │ ├── notify.plugin │ ├── notify.py │ ├── script.plugin │ ├── script.py │ ├── ticking.plugin │ └── ticking.py ├── pyproject.toml ├── setup.cfg ├── setup.py ├── tests/ │ ├── conftest.py │ ├── data/ │ │ ├── icons/ │ │ │ └── hicolor/ │ │ │ └── index.theme │ │ ├── mime/ │ │ │ └── packages/ │ │ │ └── freedesktop.org.xml │ │ ├── pulse/ │ │ │ └── cookie │ │ └── tomate/ │ │ ├── media/ │ │ │ ├── alarm.ogg │ │ │ └── clock.ogg │ │ ├── plugins/ │ │ │ ├── .gitkeep │ │ │ ├── plugin_a.plugin │ │ │ ├── plugin_a.py │ │ │ ├── plugin_b.plugin │ │ │ ├── plugin_b.py │ │ │ └── plugin_b_old.plugin │ │ └── tomate.conf │ ├── plugins/ │ │ ├── test_alarm.py │ │ ├── test_autopause.py │ │ ├── test_breakscreen.py │ │ ├── test_notify.py │ │ ├── test_script.py │ │ └── test_ticking.py │ ├── pomodoro/ │ │ ├── test_app.py │ │ ├── test_config.py │ │ ├── test_event.py │ │ ├── test_graph.py │ │ ├── test_plugin.py │ │ ├── test_session.py │ │ └── test_timer.py │ └── ui/ │ ├── dialogs/ │ │ ├── test_about.py │ │ └── test_preference.py │ ├── test_shortcut.py │ ├── test_systray.py │ ├── test_window.py │ └── widgets/ │ ├── test_countdown.py │ ├── test_headerbar.py │ └── test_session_button.py └── tomate/ ├── __init__.py ├── __main__.py ├── audio/ │ ├── __init__.py │ └── player.py ├── main.py ├── pomodoro/ │ ├── __init__.py │ ├── app.py │ ├── config.py │ ├── event.py │ ├── fsm.py │ ├── graph.py │ ├── plugin.py │ ├── session.py │ └── timer.py └── ui/ ├── __init__.py ├── dialogs/ │ ├── __init__.py │ ├── about.py │ └── preference.py ├── shortcut.py ├── systray.py ├── testing.py ├── widgets/ │ ├── __init__.py │ ├── countdown.py │ ├── headerbar.py │ ├── mode_button.py │ └── session_button.py └── window.py