Simple image host.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

mnotificationwrapper 167B

123456789
  1. #!/bin/bash
  2. OS=$(uname)
  3. if [ "$OS" = "Darwin" ]; then
  4. terminal-notifier -contentImage "$2" -title "$3" -message "$4"
  5. else
  6. notify-send -u "$1" -i "$2" "$3" "$4"
  7. fi