Skip to content

Instantly share code, notes, and snippets.

@jaimergp
Created December 29, 2021 12:20
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 jaimergp/7bb7cba6b2cf3a2cf00fa92cbe1f4473 to your computer and use it in GitHub Desktop.
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
{
"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