Created
April 3, 2021 14:32
-
-
Save Dimentium/f0bc78635a19d8d5f82ddcb249c29356 to your computer and use it in GitHub Desktop.
Karabiner Rule for Spanish ñ
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": "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