有没有一个命令我可以通过终端发出来将我的 F1-12 键切换为应用程序键(媒体、屏幕亮度......)并切换回来?即复制切换System Preferences => Keyboard => Use all F1, F2, etc. keys as standard function keys
。我的 Mac 主要用于浏览和听音乐,但偶尔进行 Chrome 调试时不必按 Fn 键就好了。
答案1
我只知道如何通过 UI 脚本来实现这一点。打开AppleScript 编辑器,然后粘贴以下内容:
tell application "System Preferences"
activate
set current pane to pane "com.apple.preference.keyboard"
end tell
tell application "System Events"
tell application process "System Preferences"
click checkbox 1 of tab group 1 of window "Keyboard"
end tell
tell application "System Preferences" to quit
end tell
像这样:
将其保存为你喜欢的任何名称。然后,你可以从终端运行:
osascript toggle-f.scpt