-
-
Save juanibiapina/60784569ec0b84ef036516c9cdb3e0f2 to your computer and use it in GitHub Desktop.
Send a notification after some minutes
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
#!/usr/bin/env bash | |
set -e | |
time="$1" | |
(sleep "$((time * 60))" && terminal-notifier -message "There you go." -title "Hi") & |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment