如何使用键盘快捷键更改 Mac OS X 上的 Dock 放大倍率?

How do I change the Dock magnification on Mac OS X using a keyboard shortcut?

我是 Automator 和 AppleScript 的新手。我看到了几个关于自定义扩展坞的链接,但它们似乎超出了我的需要(或理解)。有没有快速、快捷的方法来做到这一点?

您可以像这样通过 AppleScript 设置 Dock 放大率:

tell application "System Events"
    tell dock preferences
        set properties to {magnification:true, magnification size:1.5}
    end tell
end tell