Files
dotfiles/bin/alert
2017-09-25 23:35:55 -07:00

7 lines
130 B
Bash
Executable File

#!/bin/bash
TITLE=$1
MSG=$2
osascript -e "display notification \"$MSG\" with title \"$TITLE\" sound name \"Ping\"" &> /dev/null