Created
October 25, 2016 08:18
-
-
Save InFog/ad37576bc619cc2e26895513e4311232 to your computer and use it in GitHub Desktop.
Simple alert to use with cli on Macs
This file contains 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
#!/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