Skip to content

Instantly share code, notes, and snippets.

@alabhyajindal
Last active June 23, 2025 04:04
Show Gist options
  • Save alabhyajindal/aa34de3acfecc245029b47b50720fdfd to your computer and use it in GitHub Desktop.
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.
# 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
# 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