Skip to content

Instantly share code, notes, and snippets.

@b-a-t
Forked from vsalex/CmdShiftToCmdE.json
Last active October 15, 2018 15:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save b-a-t/7621494741f7f36b63717d036871b585 to your computer and use it in GitHub Desktop.
Save b-a-t/7621494741f7f36b63717d036871b585 to your computer and use it in GitHub Desktop.
{
"title": "Control_L + Shift_L to Control + Space",
"rules": [
{
"description": "Control_L + Shift_L to Control + Space",
"manipulators": [
{
"type": "basic",
"from": {
"key_code": "left_shift",
"modifiers": {
"mandatory": [
"left_control"
]
}
},
"to_if_alone": [
{
"key_code": "spacebar",
"modifiers": [
"left_control"
]
}
]
},
{
"type": "basic",
"from": {
"key_code": "left_control",
"modifiers": {
"mandatory": [
"left_shift"
]
}
},
"to_if_alone": [
{
"key_code": "spacebar",
"modifiers": [
"left_control"
]
}
]
}
]
}
]
}
@b-a-t
Copy link
Author

b-a-t commented Oct 15, 2018

This is the configuration file for the Karabiner 12+ which has to be placed into the ˜/.config/karabiner/assets/complex_modifications directory to take an effect.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment