- cliPomodoro is an easy to use, minimal setup, pomodoro timer.
- This timer was created to help with eye strain, and follows the 20-20-20 rule. I.e. if you spend 20 minutes looking at a screen, look at something 20 feet away for 20 seconds.
- Other pomodoro applications force you to pay money to customize the timer, but this allows you to customize your timer, and works seamlessly on your work, school, or home computer (as long as you have python installed).
- Have git installed
- Have python and a package manager of your choice installed (pip works fine)
-
Clone this git repository
-
Using a command line that has git, CD to a directory where you want the timer to be accessible then use the following
git clone https://github.com/collinkatz/cliPomodoro.git
-
CD into the cloned repository directory
cd ./cliPomodoro
-
Now create a virtual environment where we will install the packages
python -m venv .venv
-
Now activate the virtual environment by running the activate script
./.venv/Scripts/activate
-
Now install the packages from the requirements.txt file with your virtual environment activated
pip install -r ./requirements.txt
- You may edit the timer's times in the config.py file to your liking
- To run the timer:
python ./timer.py