快速切换 f1 ,f2, f3... 键功能
之前用的别人提供的 applescript 代码
tell application "System Preferences" set current pane to pane "com.apple.reference.keyboard" end tell tell application process "System Preferences" repeat until exists tab group 1 of window "Keyboard" delay 0.5 end repeat click radio button "Keyboard" of tab group 1 of window "Keyboard" try click checkbox "Use F1, F2, etc. keys as standard function keys on external keyboards" of tab group 1 of window "Keyboard" end try try click checkbox "Use F1, F2, etc. keys as standard function keys" of tab group 1 of window "Keyboard" end try end tell tell application "System Preferences" to quit
但 macos 13 设置里这个选项的位置变了,之前的不能用了,有大佬知道怎么改吗