Created
December 8, 2020 15:16
-
-
Save pkorpine/30cf3036ba37e64a5c39e7322b2980bf to your computer and use it in GitHub Desktop.
Karabiner Finnish umlauts on ANSI keyboard using right option
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": "Finnish umlauts on ANSI keyboard", | |
"rules": [ | |
{ | |
"description": "Right alt + ;' to öä (with or without shift)", | |
"manipulators": [ | |
{ | |
"type": "basic", | |
"from": { | |
"key_code": "semicolon", | |
"modifiers": {"mandatory": ["right_option"]} | |
}, | |
"to": [ | |
{ | |
"key_code": "u", | |
"modifiers": ["left_option"] | |
}, | |
{ | |
"key_code": "o" | |
}, | |
{ | |
"key_code": "vk_none" | |
} | |
] | |
}, | |
{ | |
"type": "basic", | |
"from": { | |
"key_code": "quote", | |
"modifiers": {"mandatory": ["right_option"]} | |
}, | |
"to": [ | |
{ | |
"key_code": "u", | |
"modifiers": ["left_option"] | |
}, | |
{ | |
"key_code": "a" | |
}, | |
{ | |
"key_code": "vk_none" | |
} | |
] | |
}, | |
{ | |
"type": "basic", | |
"from": { | |
"key_code": "semicolon", | |
"modifiers": {"mandatory": ["right_option", "shift"]} | |
}, | |
"to": [ | |
{ | |
"key_code": "u", | |
"modifiers": ["left_option"] | |
}, | |
{ | |
"key_code": "o", | |
"modifiers": ["left_shift"] | |
}, | |
{ | |
"key_code": "vk_none" | |
} | |
] | |
}, | |
{ | |
"type": "basic", | |
"from": { | |
"key_code": "quote", | |
"modifiers": {"mandatory": ["right_option", "shift"]} | |
}, | |
"to": [ | |
{ | |
"key_code": "u", | |
"modifiers": ["left_option"] | |
}, | |
{ | |
"key_code": "a", | |
"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