Skip to content

Instantly share code, notes, and snippets.

@thefury
Forked from rmasoni/gist:6441804
Created August 28, 2017 14:40
Show Gist options
  • Select an option

  • Save thefury/e258523d5312db9282fc7f26f70d701c to your computer and use it in GitHub Desktop.

Select an option

Save thefury/e258523d5312db9282fc7f26f70d701c to your computer and use it in GitHub Desktop.
Pomodoro notifications for OS X, powered by terminal-notifier (https://github.com/alloy/terminal-notifier).
function pomodoro {
case $1 in
start )
echo 'terminal-notifier -title "🍅 Pomodoro Done" -message "Starting short break…"' | at + 25 minutes &> /dev/null
;;
break )
echo 'terminal-notifier -title "⌛ Short Break Done" -message "Start your next Pomodoro."' | at + 5 minutes &> /dev/null
;;
esac
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment