如何通过终端/Shell 暂停咆哮通知?

如何通过终端/Shell 暂停咆哮通知?

我想知道是否有办法从命令行暂停(隐藏)咆哮通知?如果不行,有没有办法用 AppleScript 来实现这一点?

答案1

下列应该启用辅助设备支持后,它仍然有效,但不幸的是,它对我来说不起作用。但在我的计算机上,即使是常规菜单项也无法阻止 Growl……

tell application "System Preferences"
    set current pane to pane id "com.growl.prefpanel"
    tell application "System Events"
        tell process "System Preferences"
            tell window "Growl"
                click radio button "General" of tab group 1
                click button "Stop Growl" of tab group 1
            end tell
        end tell
    end tell
    quit
end tell

相关内容