Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- #!/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}"
|