/pomobash

Extremely simple Pomodoro Timer in linux command line for minimalists

Primary LanguageShell

pomobash

  • Extremely simple Pomodoro Timer in Linux command line
  • Written in bash, don't need to compile!!!

feature:

while (1){
      Work_in_30min(); Short_Break_in_5min();
      Work_in_30min(); Short_Break_in_5min();
      Work_in_30min(); Short_Break_in_5min();
      Work_in_30min(); Long_break_in_15min();
}

requirement:

  • install termdown and espeak
          sudo apt install python-pip; sudo pip install termdown; sudo apt install espeak;
  • download pomobash.sh file from this repository
  • make pomobash.sh executable
          chmod +x pomobash.sh

usage:

  • to run:
          ./pomobash.sh
  • to quit:
          Press Ctrl-C
  • to pause:
          Press SPACE

Thank Torsten Rehn for amazing termdown program.