Skip to content

Instantly share code, notes, and snippets.

@leojofer
Created January 9, 2026 13:11
Show Gist options
  • Select an option

  • Save leojofer/e43b2088bbc6fc3a4f0b453b40621236 to your computer and use it in GitHub Desktop.

Select an option

Save leojofer/e43b2088bbc6fc3a4f0b453b40621236 to your computer and use it in GitHub Desktop.
Karabiner Elements Alt Umlauts
{
"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