Skip to content

Instantly share code, notes, and snippets.

@tilacog
Forked from gabriel-bezerra/pomodoro.sh
Last active November 2, 2020 19:21
Show Gist options
  • Save tilacog/fbdff55cea75186a35b8ab5e5106ec0b to your computer and use it in GitHub Desktop.
Save tilacog/fbdff55cea75186a35b8ab5e5106ec0b to your computer and use it in GitHub Desktop.
Shell script Pomodoro timer for ubuntu unity
#!/bin/env bash
#
# Pomodoro script.
#
# Displays a notification after X minutes.
#
# Depends on libnotify-bin
main() {
minutes=$1
notify-send -i clock "Pomodoro started for ${minutes} minutes"
sleep "${minutes}"m
notify-send -i clock "Pomodoro ended (${minutes} minutes)"
}
main "$@" & disown
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment