Skip to content

Instantly share code, notes, and snippets.

@melmatsuoka
Created January 30, 2024 15:15
Show Gist options
  • Save melmatsuoka/ca89d1e55a644e12a4101c4dd0c09dcc to your computer and use it in GitHub Desktop.
Save melmatsuoka/ca89d1e55a644e12a4101c4dd0c09dcc to your computer and use it in GitHub Desktop.
Toggle Function/Media keys on macOS
#!/bin/bash
#
# Toggles the state of the "Use F1, F2, etc. keys as standard function keys" option
# in the System Keyboard Shortcuts settings in Ventura & Sonoma
if [[ $(defaults read -g 'com.apple.keyboard.fnState') == '0' ]]
then
defaults write -g 'com.apple.keyboard.fnState' -boolean true
else defaults write -g 'com.apple.keyboard.fnState' -boolean false
fi
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment