Skip to content

Instantly share code, notes, and snippets.

@guma44
Last active July 11, 2019 09:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save guma44/790dc377424bddf4ed1400ab79280c9c to your computer and use it in GitHub Desktop.
Save guma44/790dc377424bddf4ed1400ab79280c9c to your computer and use it in GitHub Desktop.
Switching right-hand Command & Alt key in Mac

Apple's Technical Note TN2450 describes how to remap keys. It is important to know that Right Command is also Right GUI. Running the following command will switch Right Command and Right Alt (if you also want to do the Left Command and Left Alt, refer to the technical note to get the hex values and the Python code below to do the or operation).

hidutil property --set '{"UserKeyMapping":[{"HIDKeyboardModifierMappingSrc":0x7000000e7,"HIDKeyboardModifierMappingDst":0x7000000e6},{"HIDKeyboardModifierMappingSrc":0x7000000e6,"HIDKeyboardModifierMappingDst":0x7000000e7}]}'

The table at the bottom of the Technical Note has a list of hex values for each key.

Here is the command to change in the same time the GB to US layout ie.:

  • map plus-minus key to tilda
  • map tilda to shift
  • map r-command to r-alt
  • map r-alt to r-command
hidutil property --set '{"UserKeyMapping":[{"HIDKeyboardModifierMappingSrc":0x700000035,"HIDKeyboardModifierMappingDst":0x7000000e1},{"HIDKeyboardModifierMappingSrc":0x7000000e7,"HIDKeyboardModifierMappingDst":0x7000000e6},{"HIDKeyboardModifierMappingSrc":0x7000000e6,"HIDKeyboardModifierMappingDst":0x7000000e7},{"HIDKeyboardModifierMappingSrc":0x700000064,"HIDKeyboardModifierMappingDst":0x700000035}]}'

And here is more explanation on what is what:

{
    "UserKeyMapping": [
    	# Map "Grave Accent and Tilde" located next to right Shift to the Shift
    	{
		"HIDKeyboardModifierMappingSrc": 0x700000035, # Tilde
		"HIDKeyboardModifierMappingDst": 0x7000000e1  # Shift
	},
    	# Map "Right GUI" (Command) to the right Alt
    	{
		"HIDKeyboardModifierMappingSrc": 0x7000000e7, # Right GUI 
		"HIDKeyboardModifierMappingDst": 0x7000000e6  # Right Alt
	},
    	# And back
    	{
		"HIDKeyboardModifierMappingSrc": 0x7000000e6,
		"HIDKeyboardModifierMappingDst": 0x7000000e7
	},
    	# Map "Plus/Minus" (below ESC) to "Grave Accent and Tilde"
    	{
		"HIDKeyboardModifierMappingSrc": 0x700000064, # Plus/Minus - this is not to be found in the table
		"HIDKeyboardModifierMappingDst": 0x700000035  # Tilde
	}]
}

If you want to restore the original state you can just:

hidutil property --set '{"UserKeyMapping":[]}'
@guma44
Copy link
Author

guma44 commented Jul 9, 2019

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment