Created
January 9, 2026 13:11
-
-
Save leojofer/e43b2088bbc6fc3a4f0b453b40621236 to your computer and use it in GitHub Desktop.
Karabiner Elements Alt Umlauts
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
| { | |
| "description": "German Umlauts: Alt+A → ä, Alt+O → ö, Alt+U → ü", | |
| "enabled": false, | |
| "manipulators": [ | |
| { | |
| "from": { | |
| "key_code": "a", | |
| "modifiers": { | |
| "mandatory": ["option"], | |
| "optional": ["any"] | |
| } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "u", | |
| "modifiers": ["option"] | |
| }, | |
| { "key_code": "a" } | |
| ], | |
| "type": "basic" | |
| }, | |
| { | |
| "from": { | |
| "key_code": "o", | |
| "modifiers": { | |
| "mandatory": ["option"], | |
| "optional": ["any"] | |
| } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "u", | |
| "modifiers": ["option"] | |
| }, | |
| { "key_code": "o" } | |
| ], | |
| "type": "basic" | |
| }, | |
| { | |
| "from": { | |
| "key_code": "u", | |
| "modifiers": { | |
| "mandatory": ["option"], | |
| "optional": ["any"] | |
| } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "u", | |
| "modifiers": ["option"] | |
| }, | |
| { "key_code": "u" } | |
| ], | |
| "type": "basic" | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment