Skip to content

Instantly share code, notes, and snippets.

@panzertime
Created December 7, 2023 19:45
Show Gist options
  • Save panzertime/6b2f4c649423d4011a6f1db829462ae2 to your computer and use it in GitHub Desktop.
Save panzertime/6b2f4c649423d4011a6f1db829462ae2 to your computer and use it in GitHub Desktop.
Apple Key Remapper

Add the attached plist to your ~/Library/LaunchAgents and then do launchctl load me.p-ti.apple-key-remap.plist

<?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>me.p-ti.apple-key-remap</string>
<key>ProgramArguments</key>
<array>
<string>sh</string>
<string>-c</string>
<string>hidutil property --set '{"UserKeyMapping":[{"HIDKeyboardModifierMappingSrc":0x7000000e2, "HIDKeyboardModifierMappingDst":0x7000000e3}]}'</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