This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- osascript toggle_function_keys.scpt | |
-- Inspired by https://github.com/MrSimonC/Toggle-Mac-Function-Keys | |
open location "x-apple.systempreferences:com.apple.Keyboard-Settings.extension" | |
tell application "System Settings" | |
reveal anchor "FunctionKeys" of pane id "com.apple.Keyboard-Settings.extension" | |
end tell | |
tell application "System Events" to tell process "System Settings" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- osascript toggle_function_keys.scpt | |
-- Inspired by https://gist.github.com/alampros/2b81af6cfc564f6accd3 | |
tell application "System Preferences" | |
reveal anchor "keyboardTab" of pane "com.apple.preference.keyboard" | |
end tell | |
tell application "System Events" to tell process "System Preferences" | |
set checkbox_target to false |