-
-
Save nOBITa3001/77d1183d7f1ced80235beb801b33ec74 to your computer and use it in GitHub Desktop.
CLI Pomodoro for Mac
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
| # I'll be doing another one for Linux, but this one will give you | |
| # a pop up notification and sound alert (using the built-in sounds for macOS) | |
| # Requires below to be installed | |
| # - https://github.com/caarlos0/timer | |
| # - https://github.com/julienXX/terminal-notifier | |
| # Mac setup for pomo | |
| alias work="timer 60m && terminal-notifier -message 'Pomodoro'\ | |
| -title 'Work Timer is up! Take a Break π'\ | |
| -appIcon '~/Pictures/pumpkin.png'\ | |
| -sound Crystal" | |
| alias rest="timer 10m && terminal-notifier -message 'Pomodoro'\ | |
| -title 'Break is over! Get back to work π¬'\ | |
| -appIcon '~/Pictures/pumpkin.png'\ | |
| -sound Crystal" | |
| alias pomo="timer 25m && terminal-notifier -message 'Pomodoro'\ | |
| -title 'Time to focus is up! Take a Break - $ sbreak for 5m and $ lbreak for 15m π'\ | |
| -appIcon '~/Pictures/pumpkin.png'\ | |
| -sound Crystal" | |
| alias sbreak="timer 5m && terminal-notifier -message 'Pomodoro'\ | |
| -title 'Short break is over! Get back to work - $ pomo for 25m focus time π¬'\ | |
| -appIcon '~/Pictures/pumpkin.png'\ | |
| -sound Crystal" | |
| alias lbreak="timer 5m && terminal-notifier -message 'Pomodoro'\ | |
| -title 'Long break is over! Get back to work - $ pomo for 25m focus time π¬'\ | |
| -appIcon '~/Pictures/pumpkin.png'\ | |
| -sound Crystal" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment