Last active
February 13, 2023 22:11
-
-
Save MrModest/83ab85bf8e05f02ee1a850b2c616d9cd to your computer and use it in GitHub Desktop.
Karabiner Umlauts and Eszett config
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": "German Umlaut", | |
"rules": [ | |
{ | |
"description": "Change option + a/o/u to ä/ö/ü", | |
"manipulators": [ | |
{ | |
"type": "basic", | |
"from": { | |
"key_code": "a", | |
"modifiers": { | |
"mandatory": [ | |
"option" | |
], | |
"optional": [ | |
"caps_lock" | |
] | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "u", | |
"modifiers": [ | |
"left_option" | |
] | |
}, | |
{ | |
"key_code": "a" | |
}, | |
{ | |
"key_code": "vk_none" | |
} | |
] | |
}, | |
{ | |
"type": "basic", | |
"from": { | |
"key_code": "a", | |
"modifiers": { | |
"mandatory": [ | |
"option", | |
"shift" | |
] | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "u", | |
"modifiers": [ | |
"left_option" | |
] | |
}, | |
{ | |
"key_code": "a", | |
"modifiers": [ | |
"left_shift" | |
] | |
}, | |
{ | |
"key_code": "vk_none" | |
} | |
] | |
}, | |
{ | |
"type": "basic", | |
"from": { | |
"key_code": "o", | |
"modifiers": { | |
"mandatory": [ | |
"option" | |
], | |
"optional": [ | |
"caps_lock" | |
] | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "u", | |
"modifiers": [ | |
"left_option" | |
] | |
}, | |
{ | |
"key_code": "o" | |
}, | |
{ | |
"key_code": "vk_none" | |
} | |
] | |
}, | |
{ | |
"type": "basic", | |
"from": { | |
"key_code": "o", | |
"modifiers": { | |
"mandatory": [ | |
"option", | |
"shift" | |
] | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "u", | |
"modifiers": [ | |
"left_option" | |
] | |
}, | |
{ | |
"key_code": "o", | |
"modifiers": [ | |
"left_shift" | |
] | |
}, | |
{ | |
"key_code": "vk_none" | |
} | |
] | |
}, | |
{ | |
"type": "basic", | |
"from": { | |
"key_code": "u", | |
"modifiers": { | |
"mandatory": [ | |
"option" | |
], | |
"optional": [ | |
"caps_lock" | |
] | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "u", | |
"modifiers": [ | |
"left_option" | |
] | |
}, | |
{ | |
"key_code": "u" | |
}, | |
{ | |
"key_code": "vk_none" | |
} | |
] | |
}, | |
{ | |
"type": "basic", | |
"from": { | |
"key_code": "u", | |
"modifiers": { | |
"mandatory": [ | |
"option", | |
"shift" | |
] | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "u", | |
"modifiers": [ | |
"left_option" | |
] | |
}, | |
{ | |
"key_code": "u", | |
"modifiers": [ | |
"left_shift" | |
] | |
}, | |
{ | |
"key_code": "vk_none" | |
} | |
] | |
} | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment