This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Run for Pomodoro timer. Defaults to 25 min session and 5 minute break. | |
# Set $QUIET environment variable to eliminate the countdown output. | |
# I run it with a gnome-terminal profile called "pomodoro" where I have | |
# the text size set to 72 pt, with text and background colors adjusted, | |
# starting it like this: | |
# | |
# gnome-terminal --window-with-profile pomodoro --hide-menubar -- \ | |
# sh -c "setterm -cursor off; resize -s 1 7; pomodoro $1 $2" |