Skip to content

Latest commit

 

History

History
65 lines (53 loc) · 1.53 KB

README.md

File metadata and controls

65 lines (53 loc) · 1.53 KB

POMODORO-CLI

pomodoro-cli is the simplest possible pomodoro timer.

  • Linux image
  • macOS image

pomodoro-cli will notify you when it's time for a break, or time to focus.

Prerequisite

Need zenity package in Linux.

  zenity --version

if it shows version then its well and good but if it doesnot

Update the package index:

 sudo apt-get update

Install zenity deb package:

 sudo apt-get install zenity

Installation

git clone https://github.com/proffapt/pomodoro-cli
chmod +x install.sh
./install.sh

Examples

  • Start a pomodoro timer with 20 minutes of focus time
    pd 20
  • 20 minutes of focus time and 3 minutes of break time
    pd 20 3
  • 20 minutes of focus time, 3 minutes of break time and 10 minutes of long break
    pd 20 3 10
  • 20 minutes of focus time, 3 minutes of break time, 10 minutes of long break and 4 cicles of focus until long break
    pd 20 3 10 4

Usage


Usage: pd [options] focus break long_break breaks_until_long
options -h: display help message
focus Minutes of focus until break | Default = 25
break Minutes of break until focus | Default = 5
long_break Minutes of long break until focus | Default = 15
breaks_until_long Number of breaks until long break | Default = 4