如何为 Macbook Prof / MacOS 创建系统通知

如何为 Macbook Prof / MacOS 创建系统通知

对于 Ubuntu 来说,创建桌面通知很容易: https://askubuntu.com/questions/187022/how-can-i-send-a-custom-desktop-notification

看起来像:

$ notify-send "Hello world!"

在 MacOS 上,我正在寻找一个可用于创建系统通知的简单命令。是否有一些 Apple 脚本可以启动来实现此目的?

答案1

是的,你可以display notification在 Applescript 中使用。例如:

osascript -e 'display notification "Hello World!" with title "Notification Example"'

Applescript 文档显示通知有更多详细信息。

相关内容