Created
May 22, 2018 15:24
-
-
Save revgum/0c0f6d383eee7499a92e24d8fa714fbd to your computer and use it in GitHub Desktop.
karabiner-elements tilde fix for 64-keyboard
This file contains hidden or 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
// in ~/.config/karabiner/assets/complex_modifications/shift_esc.json | |
{ | |
"title": "Shift + Esc to ~", | |
"rules": [ | |
{ | |
"description": "Shift + Esc to ~", | |
"manipulators": [ | |
{ | |
"type": "basic", | |
"from": { | |
"key_code": "escape", | |
"modifiers": { | |
"mandatory": [ | |
"right_shift" | |
] | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "grave_accent_and_tilde", | |
"modifiers": [ | |
"right_shift" | |
] | |
} | |
] | |
} | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment