Skip to content

Instantly share code, notes, and snippets.

@tmichel
Created January 24, 2018 14:48
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tmichel/86b954461bee9451fcc17b62052d2fc6 to your computer and use it in GitHub Desktop.
Save tmichel/86b954461bee9451fcc17b62052d2fc6 to your computer and use it in GitHub Desktop.
Disable annoying shift augmentation for ctrl+up and ctrl+down on macOS
/usr/libexec/PlistBuddy -c "set AppleSymbolicHotKeys:34:enabled bool false" ~/Library/Preferences/com.apple.symbolichotkeys.plist
/usr/libexec/PlistBuddy -c "set AppleSymbolicHotKeys:35:enabled bool false" ~/Library/Preferences/com.apple.symbolichotkeys.plist
/usr/libexec/PlistBuddy -c "set AppleSymbolicHotKeys:37:enabled bool false" ~/Library/Preferences/com.apple.symbolichotkeys.plist
# 34 and 35 might not exists. Add them.
/usr/libexec/PlistBuddy -c "add AppleSymbolicHotKeys:34:enabled bool false" ~/Library/Preferences/com.apple.symbolichotkeys.plist
/usr/libexec/PlistBuddy -c "add AppleSymbolicHotKeys:35:enabled bool false" ~/Library/Preferences/com.apple.symbolichotkeys.plist
# Restart your computer. Log out then log in did not work for me.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment