让我们打开并关闭它:
在 Mac OS X 上是否有内置方法将所有立体声输出混合为单声道?
答案1
我尝试修改中的设置com.apple.universalaccess.plist
,但无法使其生效:
f=~/Library/Preferences/com.apple.universalaccess
sudo defaults write $f stereoAsMono -bool true
sudo chown $USER $f.plist
切换偏好设置的 AppleScript:
tell application "System Preferences"
activate
reveal anchor "Hearing" of pane id "com.apple.preference.universalaccess"
end tell
tell application "System Events" to tell process "System Preferences"
click checkbox 2 of tab group 1 of window 1
end tell
quit application "System Preferences"
答案2
答案3
(请原谅我挖出一篇旧帖子...)
在 Mac Os X Yosemite 上(可能在 Mavericks 上也是如此),辅助功能窗口略有不同,上面发布的 Applescript 不起作用。以下是稍作修改的相同版本:
tell application "System Preferences"
activate
reveal anchor "Hearing" of pane id "com.apple.preference.universalaccess"
end tell
tell application "System Events" to tell process "System Preferences"
click checkbox 2 of window 1
end tell
quit application "System Preferences"
将其保存为应用程序并弹出到您的 Dock 中,即可享受一键单一化的乐趣!