├── .gitignore ├── AUTHOR ├── LICENSE ├── MANIFEST.in ├── README.md ├── pomodoro.spec ├── requirements.txt ├── screenshots ├── screenshot_1.png ├── screenshot_2.png ├── screenshot_3.png ├── screenshot_4.png └── screenshot_5.png ├── setup.py └── src ├── main.py └── pomodoro ├── __init__.py ├── const.py ├── data └── icons │ ├── README.md │ ├── check.png │ ├── exit.png │ ├── statistics.png │ ├── tasks.png │ ├── timer.png │ ├── tomato.ico │ ├── tomato.png │ └── trash.png ├── pomodoro.py └── util.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakmartin/pomodoro/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHOR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakmartin/pomodoro/HEAD/AUTHOR -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakmartin/pomodoro/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakmartin/pomodoro/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakmartin/pomodoro/HEAD/README.md -------------------------------------------------------------------------------- /pomodoro.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakmartin/pomodoro/HEAD/pomodoro.spec -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | PyQt5>=5.15.0 2 | QDarkStyle>=2.8.1 3 | -------------------------------------------------------------------------------- /screenshots/screenshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakmartin/pomodoro/HEAD/screenshots/screenshot_1.png -------------------------------------------------------------------------------- /screenshots/screenshot_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakmartin/pomodoro/HEAD/screenshots/screenshot_2.png -------------------------------------------------------------------------------- /screenshots/screenshot_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakmartin/pomodoro/HEAD/screenshots/screenshot_3.png -------------------------------------------------------------------------------- /screenshots/screenshot_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakmartin/pomodoro/HEAD/screenshots/screenshot_4.png -------------------------------------------------------------------------------- /screenshots/screenshot_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakmartin/pomodoro/HEAD/screenshots/screenshot_5.png -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakmartin/pomodoro/HEAD/setup.py -------------------------------------------------------------------------------- /src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakmartin/pomodoro/HEAD/src/main.py -------------------------------------------------------------------------------- /src/pomodoro/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakmartin/pomodoro/HEAD/src/pomodoro/__init__.py -------------------------------------------------------------------------------- /src/pomodoro/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakmartin/pomodoro/HEAD/src/pomodoro/const.py -------------------------------------------------------------------------------- /src/pomodoro/data/icons/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakmartin/pomodoro/HEAD/src/pomodoro/data/icons/README.md -------------------------------------------------------------------------------- /src/pomodoro/data/icons/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakmartin/pomodoro/HEAD/src/pomodoro/data/icons/check.png -------------------------------------------------------------------------------- /src/pomodoro/data/icons/exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakmartin/pomodoro/HEAD/src/pomodoro/data/icons/exit.png -------------------------------------------------------------------------------- /src/pomodoro/data/icons/statistics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakmartin/pomodoro/HEAD/src/pomodoro/data/icons/statistics.png -------------------------------------------------------------------------------- /src/pomodoro/data/icons/tasks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakmartin/pomodoro/HEAD/src/pomodoro/data/icons/tasks.png -------------------------------------------------------------------------------- /src/pomodoro/data/icons/timer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakmartin/pomodoro/HEAD/src/pomodoro/data/icons/timer.png -------------------------------------------------------------------------------- /src/pomodoro/data/icons/tomato.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakmartin/pomodoro/HEAD/src/pomodoro/data/icons/tomato.ico -------------------------------------------------------------------------------- /src/pomodoro/data/icons/tomato.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakmartin/pomodoro/HEAD/src/pomodoro/data/icons/tomato.png -------------------------------------------------------------------------------- /src/pomodoro/data/icons/trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakmartin/pomodoro/HEAD/src/pomodoro/data/icons/trash.png -------------------------------------------------------------------------------- /src/pomodoro/pomodoro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakmartin/pomodoro/HEAD/src/pomodoro/pomodoro.py -------------------------------------------------------------------------------- /src/pomodoro/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakmartin/pomodoro/HEAD/src/pomodoro/util.py --------------------------------------------------------------------------------