Skip to content

Instantly share code, notes, and snippets.

@creisor
Created May 8, 2017 20:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save creisor/d8b4de129da79bec9b190fec148b86ce to your computer and use it in GitHub Desktop.
Save creisor/d8b4de129da79bec9b190fec148b86ce to your computer and use it in GitHub Desktop.
A function for popping up a dialog at you
function reminder() {
# reminder 5 "remove tea bag"
seconds=$(($1 * 60))
sleep $seconds && osascript -e "tell app \"System Events\" to display dialog \"$2\"" 2>&1 > /dev/null
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment