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