Last active
June 23, 2025 04:04
-
-
Save alabhyajindal/aa34de3acfecc245029b47b50720fdfd to your computer and use it in GitHub Desktop.
Work and rest pomodoro timers, running in the terminal, for the fish shell. Inspired by @bashbunni.
This file contains hidden or 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
# place file in ~/.config/fish/functions | |
function rest | |
timer 10m || return 1 | |
notify-send 'Break is over! Get back to work 😬' -t 3000 | |
paplay /usr/share/sounds/freedesktop/stereo/complete.oga | |
end |
This file contains hidden or 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
# place file in ~/.config/fish/functions | |
function work | |
timer 50m || return 1 | |
notify-send 'Work Timer is up! Take a Break 😊' -t 3000 | |
paplay /usr/share/sounds/freedesktop/stereo/complete.oga | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment