如何制作 Mac 终端弹出窗口/警报?苹果脚本?
我希望能够让我的程序显示警报、通知以及显示我的自定义文本的任何内容。这是怎么做到的?另外,是否可以制作一个带有多个设置变量的按钮的按钮?
类似于批处理:
echo msgbox""
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我希望能够让我的程序显示警报、通知以及显示我的自定义文本的任何内容。这是怎么做到的?另外,是否可以制作一个带有多个设置变量的按钮的按钮?
类似于批处理:
echo msgbox""
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(8)
使用
osascript
。例如:
将“Finder”替换为您想要的任何应用程序。请注意,如果该应用程序处于后台,则该对话框也会出现在后台。要始终显示在前台,请使用“系统事件”作为应用程序:
了解更多信息 Mac OS X 提示。
Use
osascript
. For example:Replacing “Finder” with whatever app you desire. Note if that app is backgrounded, the dialog will appear in the background too. To always show in the foreground, use “System Events” as the app:
Read more on Mac OS X Hints.
使用该命令可以从终端触发通知中心通知。
Use this command to trigger the notification center notification from the terminal.
如果您使用任何具有通知中心的 Mac OS X 版本,则可以使用 terminal-notifier 宝石。首先安装它(您可能需要
sudo
):然后简单地:
另请参阅此 OS X 每日帖子。
If you're using any Mac OS X version which has Notification Center, you can use the terminal-notifier gem. First install it (you may need
sudo
):and then simply:
See also this OS X Daily post.
向通知添加副标题、标题和声音:
使用AppleScript:
使用terminal/bash< /strong> 和
osascript
:可以显示警报,而不是通知
不采用副标题,也不采用强硬的声音。
使用AppleScript:
使用terminal/bash和
osascript
:在bash中添加一行用于播放声音 在警报行之后:
在 AppleScript 中添加同一行,让 shell 脚本 完成工作:
可以从此处选择声音。
摘自关于终端和 applescript 通知的便利文章。
Adding subtitle, title and a sound to the notification:
With AppleScript:
With terminal/bash and
osascript
:An alert can be displayed instead of a notification
Does not take the sub-heading nor the sound tough.
With AppleScript:
With terminal/bash and
osascript
:Add a line in bash for playing the sound after the alert line:
Add same line in AppleScript, letting shell script do the work:
List of macOS built in sounds to choose from here.
Paraphrased from a handy article on terminal and applescript notifications.
如果答案为空,这会将焦点恢复到先前的应用程序并退出脚本。
如果您告诉系统事件显示该对话框,如果它之前没有运行,将会有一个小的延迟。
有关显示对话框的文档,请在 AppleScript 编辑器中打开标准添加字典或参阅 AppleScript 语言指南。
This would restore focus to the previous application and exit the script if the answer was empty.
If you told System Events to display the dialog, there would be a small delay if it wasn't running before.
For documentation about display dialog, open the dictionary of Standard Additions in AppleScript Editor or see the AppleScript Language Guide.
简单通知
osascript -e '显示通知“hello world!”'
带有标题的通知
osascript -e '显示通知“hello world!”带有标题“这是标题”'
通知并发出声音
osascript -e '显示通知“hello world!”标题为“Greeting”声音名称“Submarine”'
带变量的通知
osascript -e '显示通知“'“$TR_TORRENT_NAME 已完成下载!”'”标题为“✔ Transmission-daemon”'
学分: https://code-maven.com/display -来自-mac-命令行的通知
Simple Notification
osascript -e 'display notification "hello world!"'
Notification with title
osascript -e 'display notification "hello world!" with title "This is the title"'
Notify and make sound
osascript -e 'display notification "hello world!" with title "Greeting" sound name "Submarine"'
Notification with variables
osascript -e 'display notification "'"$TR_TORRENT_NAME has finished downloading!"'" with title " ✔ Transmission-daemon"'
credits: https://code-maven.com/display-notification-from-the-mac-command-line
还有我的 15 美分。 Mac 终端等的单行程序只需将 MIN= 设置为任何内容和一条消息
一个额外的示例,以激发组合更多命令的灵感;这也会使 Mac 在收到消息后进入待机睡眠状态:) 然后需要 sudo 登录,乘以 60*2 两个小时也可以
And my 15 cent. A one liner for the mac terminal etc just set the MIN= to whatever and a message
A bonus example for inspiration to combine more commands; this will put a mac put to standby sleep upon the message too :) the sudo login is needed then, a multiplication as the 60*2 for two hours goes aswell
我制作了一个脚本来解决这个问题,位于此处。
安装:
brew 安装 akashaggarwal7/tools/tsay
用法:
睡5; tsay
欢迎贡献!
I made a script to solve this which is here.
Installation:
brew install akashaggarwal7/tools/tsay
Usage:
sleep 5; tsay
Feel free to contribute!