7 lines
130 B
Bash
Executable File
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
|