Skip to content

Instantly share code, notes, and snippets.

@harshagv
Last active September 11, 2024 02:52
Show Gist options
  • Select an option

  • Save harshagv/c7bc8e4ce051fb4fd6d88da4bc780a5c to your computer and use it in GitHub Desktop.

Select an option

Save harshagv/c7bc8e4ce051fb4fd6d88da4bc780a5c to your computer and use it in GitHub Desktop.
MacOS pomodoro script
# Install Prerequisites
# brew install terminal-notifier
# brew install caarlos0/tap/timer
#
work() {
timer ${1} \
&& say 'Harsha, Work Timer is up! Take a Break' \
&& terminal-notifier \
-title 'Pomodoro'\
-message 'Harsha πŸ–οΈ, Work Timer is up βŒ›! Take a Break πŸ•Ί 😊 '\
-appIcon '~/Pictures/grogu.png'\
-sound Crystal
}
rest() {
timer ${1} \
&& say 'Harsha, Break is over! Get back to work' \
&& terminal-notifier \
-title 'Pomodoro'\
-message 'Harsha πŸ‘‹, Break is over βŒ›! Get back to work πŸ’» 🌟'\
-appIcon '~/Pictures/brucelee.png'\
-sound Crystal
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment