从 Dock 中删除 AppleScript 脚本的图标
如何隐藏正在运行的 AppleScript 的停靠栏图标,并仅将应用程序保留在菜单栏中?
How can I hide the dock icon for a running AppleScript, and keep the application only in the menu bar?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要隐藏应用程序使其不显示在 Dock 中,您需要修改应用程序内的 Info.plist 文件。最简单的方法是在 Finder 窗口中选择应用程序,按住 Control 单击,然后选择“显示包内容”。通过文本编辑器编辑 Info.plist。这基本上是一个 XML 文件。只需将其添加到字典中即可。
这只会隐藏扩展坞中的应用程序图标。
要让 AppleScript 出现在菜单栏中,需要一些额外的编码。要为脚本添加菜单栏项,请查看这个答案,它提供了一个很好的示例。这取决于您的用例,但您可能需要将脚本设置为保持打开状态。为此,请在脚本编辑器中打开脚本,转到“文件”,按住 option 键,选择“另存为”,然后勾选“运行处理程序后保持打开状态”复选框。
To hide an application from appearing in the dock, you need to modify the Info.plist file inside the application. The easiest way to do this is to select the application in the Finder window, control‑click, then select "Show Package Contents". Edit the Info.plist via a text editor. This is basically an XML file. Just add this to the dict.
This will only hide the application icon in the dock.
To have your AppleScript appear in the menu bar requires some additional coding. To add a menu bar item for your script, take a look at this answer which gives an excellent example. It will depend on your use case, but you will likely need to set your script to stay open. To do this, open your script in script editor, go to "File", hold the option key, select "Save as", then tick the "Stay open after run handler" checkbox.