The Pomodoro Technique is a time management method developed by Francesco Cirillo in the late 1980s.
There are six steps in the original technique:
- Decide on the task to be done.
- Set the pomodoro timer (traditionally to 25 minutes).
- Work on the task.
- End work when the timer rings and put a checkmark on a piece of paper.
- If you have fewer than four checkmarks, take a short break (3–5 minutes) and then return to step 2; otherwise continue to step 6.
- After four pomodoros, take a longer break (15–30 minutes), reset your checkmark count to zero, then go to step 1.
This is a php app. Clone the repo, composer install
and type: php pomodoro start
.
Other way to download the builds/pomodoro
file and run it: ./pomodoro start
.
By default, there are 4 rounds, each 25 minutes and 5 minutes break between the rounds. You can customize these values with arguments:
--min[=MIN] pomodoro timer in minutes (default: 25)
--break[=BREAK] break between rounds (default: 5)
--rounds[=ROUNDS] how many rounds (deafult: 4)
Run like this:
php pomodoro start --rounds=3 --min=20 --break=4
or ./pomodoro start --rounds=3 --min=20 --break=4
The app has os native notifications. If you want to make it "nicer" on macos, install terminal-notifier
. You can do it with brew: brew install terminal-notifier
.
Pomodoro is an open-source software licensed under the MIT license.