AppleScript从Dock中删除图标

时间:2017-04-03 08:05:47

标签: macos applescript dock osascript

我需要能够通过终端运行脚本。只要您更改了辅助功能中的某些设置,我就看到其他脚本可以正常工作;这不是我试图做的选择。我已经尝试过下面的脚本,但收到以下错误:0:13:脚本错误:实际数字不能跟在此标识符之后。 (-2740)

tell application "System Events"
      set dockPlistFile to property list file "~/Library/Preferences/com.apple.dock.plist"
      tell dockPlistFile
                tell property list item "persistent-apps"
                          set appTileItems to value of (every property list item whose value of property list item "tile-data"'s property list item "file-label" is not "Terminal")
                          set its value to appTileItems
                end tell
      end tell
end tell
tell application "Dock" to quit

我试图摆脱码头上的终端图标。

先谢谢。

1 个答案:

答案 0 :(得分:0)

我认为this提出不同的答案将有助于您在不更改辅助功能设置的情况下运行坞站修改。 基本上,您将启动代理XML文件链接到Shell脚本,然后从其中调用Apple脚本。