Skip to content

Instantly share code, notes, and snippets.

@InFog
Created October 25, 2016 08:18
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 InFog/ad37576bc619cc2e26895513e4311232 to your computer and use it in GitHub Desktop.
Save InFog/ad37576bc619cc2e26895513e4311232 to your computer and use it in GitHub Desktop.
Simple alert to use with cli on Macs
#!/bin/bash
title="$1"
message="$2"
param='display notification "'$2'" with title "'$1'"'
osascript -e "$param"
# Usage: alertme "Title" "Message"
# Example: ./deploy_all_the_things && alertme "Deployment" "Deployment is finished. Have a nice day"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment