Created
January 24, 2018 14:48
-
-
Save tmichel/86b954461bee9451fcc17b62052d2fc6 to your computer and use it in GitHub Desktop.
Disable annoying shift augmentation for ctrl+up and ctrl+down on macOS
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
/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