Skip to content

Instantly share code, notes, and snippets.

@revgum
Created May 22, 2018 15:24
Show Gist options
  • Save revgum/0c0f6d383eee7499a92e24d8fa714fbd to your computer and use it in GitHub Desktop.
Save revgum/0c0f6d383eee7499a92e24d8fa714fbd to your computer and use it in GitHub Desktop.
karabiner-elements tilde fix for 64-keyboard
// 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