Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 

15 řádky
364 B

  1. #!/bin/sh
  2. message=${1:="no message"}
  3. title=''
  4. if [ "${2}" != "" ]; then
  5. message="${2}"
  6. title="${1}"
  7. fi
  8. notification="display notification \"${message}\""
  9. #if [ "${title}" != "" ]; then
  10. # notification="${notification} with title \"${title}\""
  11. #fi
  12. [ "${title}" != "" ] && notification="${notification} with title \"${title}\""
  13. osascript -e "${notification}"