Created
September 22, 2025 10:10
-
-
Save s-estay/3f7e10b2f6a2a61f3efe7497d5ac6fea to your computer and use it in GitHub Desktop.
karabiner-swedish-letters
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": "Map swedish äåö to Right Option + qao", | |
| "manipulators": [ | |
| { | |
| "from": { | |
| "key_code": "q", | |
| "modifiers": { "mandatory": ["right_option"] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "u", | |
| "modifiers": ["left_option"] | |
| }, | |
| { | |
| "key_code": "a", | |
| "modifiers": [] | |
| } | |
| ], | |
| "type": "basic" | |
| }, | |
| { | |
| "from": { | |
| "key_code": "o", | |
| "modifiers": { "mandatory": ["right_option"] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "u", | |
| "modifiers": ["left_option"] | |
| }, | |
| { | |
| "key_code": "o", | |
| "modifiers": [] | |
| } | |
| ], | |
| "type": "basic" | |
| }, | |
| { | |
| "from": { | |
| "key_code": "q", | |
| "modifiers": { "mandatory": ["right_option", "right_shift"] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "u", | |
| "modifiers": ["left_option"] | |
| }, | |
| { | |
| "key_code": "a", | |
| "modifiers": ["right_shift"] | |
| } | |
| ], | |
| "type": "basic" | |
| }, | |
| { | |
| "from": { | |
| "key_code": "o", | |
| "modifiers": { "mandatory": ["right_option", "right_shift"] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "u", | |
| "modifiers": ["left_option"] | |
| }, | |
| { | |
| "key_code": "o", | |
| "modifiers": ["right_shift"] | |
| } | |
| ], | |
| "type": "basic" | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment