![Macbook Prof / MacOS のシステム通知を作成する方法](https://rvso.com/image/1618755/Macbook%20Prof%20%2F%20MacOS%20%E3%81%AE%E3%82%B7%E3%82%B9%E3%83%86%E3%83%A0%E9%80%9A%E7%9F%A5%E3%82%92%E4%BD%9C%E6%88%90%E3%81%99%E3%82%8B%E6%96%B9%E6%B3%95.png)
Ubuntu の場合、デスクトップ通知を作成するのは簡単です。 https://askubuntu.com/questions/187022/カスタムデスクトップ通知を送信する方法
次のようになります:
$ notify-send "Hello world!"
MacOS で、システム通知を作成するために使用できる簡単なコマンドを探しています。それを実現するために起動できる Apple スクリプトはありますか?
答え1
はい、Applescript で使用できますdisplay notification
。例:
osascript -e 'display notification "Hello World!" with title "Notification Example"'
Applescriptのドキュメント通知の表示追加の詳細があります。