Created
December 29, 2021 12:20
-
-
Save jaimergp/7bb7cba6b2cf3a2cf00fa92cbe1f4473 to your computer and use it in GitHub Desktop.
Karabiner config for missing backslash keys on US keyboards with Spanish ISO layouts
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
{ | |
"title": "Option+tilde to backslash", | |
"rules": [ | |
{ | |
"description": "ROption+tilde inserts backslash", | |
"manipulators": [ | |
{ | |
"type": "basic", | |
"from": { | |
"modifiers": { | |
"mandatory": [ | |
"right_alt" | |
], | |
"optional": [ | |
"caps_lock" | |
] | |
}, | |
"key_code": "grave_accent_and_tilde" | |
}, | |
"to": [ | |
{ | |
"repeat": true, | |
"key_code": "non_us_backslash", | |
"modifiers": [ | |
"right_alt" | |
] | |
} | |
] | |
} | |
] | |
}, | |
{ | |
"description": "LOption+tilde inserts degree", | |
"manipulators": [ | |
{ | |
"type": "basic", | |
"from": { | |
"modifiers": { | |
"mandatory": [ | |
"left_alt" | |
], | |
"optional": [ | |
"caps_lock" | |
] | |
}, | |
"key_code": "grave_accent_and_tilde" | |
}, | |
"to": [ | |
{ | |
"repeat": true, | |
"key_code": "non_us_backslash" | |
} | |
] | |
} | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment