Created
July 15, 2025 01:40
-
-
Save rbika/7cf43a87f3e463fa45c9fdc9348412cd to your computer and use it in GitHub Desktop.
Karabiner - Maps Left Ctrl + a/s/d to modifiers
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": "Maps Left Ctrl + a/s/d to modifiers", | |
| "manipulators": [ | |
| { | |
| "from": { | |
| "key_code": "a", | |
| "modifiers": { | |
| "mandatory": ["left_control"], | |
| "optional": ["any"] | |
| } | |
| }, | |
| "to": { | |
| "key_code": "left_shift", | |
| "modifiers": "left_control" | |
| }, | |
| "type": "basic" | |
| }, | |
| { | |
| "from": { | |
| "key_code": "s", | |
| "modifiers": { | |
| "mandatory": ["left_control"], | |
| "optional": ["any"] | |
| } | |
| }, | |
| "to": { | |
| "key_code": "left_option", | |
| "modifiers": "left_control" | |
| }, | |
| "type": "basic" | |
| }, | |
| { | |
| "from": { | |
| "key_code": "d", | |
| "modifiers": { | |
| "mandatory": ["left_control"], | |
| "optional": ["any"] | |
| } | |
| }, | |
| "to": { | |
| "key_code": "left_command", | |
| "modifiers": "left_control" | |
| }, | |
| "type": "basic" | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment