Skip to content

Instantly share code, notes, and snippets.

@rvause
Created October 4, 2021 07:37
Show Gist options
  • Save rvause/511fb1d8a9b15d90898893f73815c583 to your computer and use it in GitHub Desktop.
Save rvause/511fb1d8a9b15d90898893f73815c583 to your computer and use it in GitHub Desktop.
Caps -> Esc and the weird K380 dual key -> ~`
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>local.KeyRemapping</string>
<key>ProgramArguments</key>
<array>
<!--
Item 1: 0x39 (CapsLock) -> 0x29 (Esc)
Item 2: 0x64 (+-/weird S) -> `/~
-->
<string>/usr/bin/hidutil</string>
<string>property</string>
<string>--set</string>
<string>{"UserKeyMapping":[
{
"HIDKeyboardModifierMappingSrc": 0x700000039,
"HIDKeyboardModifierMappingDst": 0x700000029
},
{
"HIDKeyboardModifierMappingSrc": 0x700000064,
"HIDKeyboardModifierMappingDst": 0x700000035
}
]}</string>
</array>
<key>RunAtLoad</key>
<true/>
</dict>
</plist>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment