Skip to content

Instantly share code, notes, and snippets.

@juanibiapina
Created November 19, 2019 22:48
Show Gist options
  • Save juanibiapina/60784569ec0b84ef036516c9cdb3e0f2 to your computer and use it in GitHub Desktop.
Save juanibiapina/60784569ec0b84ef036516c9cdb3e0f2 to your computer and use it in GitHub Desktop.
Send a notification after some minutes
#!/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