Skip to content

Instantly share code, notes, and snippets.

@rbika
Created July 15, 2025 01:40
Show Gist options
  • Select an option

  • Save rbika/7cf43a87f3e463fa45c9fdc9348412cd to your computer and use it in GitHub Desktop.

Select an option

Save rbika/7cf43a87f3e463fa45c9fdc9348412cd to your computer and use it in GitHub Desktop.
Karabiner - Maps Left Ctrl + a/s/d to modifiers
{
"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