You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #!/bin/sh
- message=${1:="no message"}
- title=''
- if [ "${2}" != "" ]; then
- message="${2}"
- title="${1}"
- fi
- notification="display notification \"${message}\""
- #if [ "${title}" != "" ]; then
- # notification="${notification} with title \"${title}\""
- #fi
- [ "${title}" != "" ] && notification="${notification} with title \"${title}\""
-
- osascript -e "${notification}"
|