Skip to content

Instantly share code, notes, and snippets.

@Dimentium
Created April 3, 2021 14:32
Show Gist options
  • Select an option

  • Save Dimentium/f0bc78635a19d8d5f82ddcb249c29356 to your computer and use it in GitHub Desktop.

Select an option

Save Dimentium/f0bc78635a19d8d5f82ddcb249c29356 to your computer and use it in GitHub Desktop.
Karabiner Rule for Spanish ñ
{
"title": "Rule for Spanish ñ",
"rules": [
{
"description" : "right alt + n = ñ",
"manipulators" : [ {
"to_delayed_action" : {
"to_if_invoked" : [ {
"key_code" : "semicolon"
}, {
"select_input_source" : {
"input_source_id" : "com.apple.keylayout.ABC"
}
} ],
"to_if_canceled" : [ {
"select_input_source" : {
"input_source_id" : "com.apple.keylayout.ABC"
}
} ]
},
"from" : {
"key_code" : "n",
"modifiers" : {
"mandatory" : [ "right_option" ]
}
},
"to" : [ {
"select_input_source" : {
"input_source_id" : "com.apple.keylayout.Spanish"
}
} ],
"type" : "basic"
} ]
}
]}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment