Skip to content

Instantly share code, notes, and snippets.

@nandofalcao
Last active May 30, 2022 05:15
Show Gist options
  • Save nandofalcao/e1a1e24bb7fd084bf35d35d409e1d403 to your computer and use it in GitHub Desktop.
Save nandofalcao/e1a1e24bb7fd084bf35d35d409e1d403 to your computer and use it in GitHub Desktop.
Complex Modification for karabiner
{
"title": "Switch desktop, Mission Control and Divvy shortcut",
"rules": [
{
"description": "Switch desktop, Mission Control and Divvy shortcut",
"manipulators": [
{
"type": "basic",
"from": {
"pointing_button": "button5"
},
"to": [
{
"key_code": "right_arrow",
"modifiers": "left_control"
}
]
},
{
"type": "basic",
"from": {
"pointing_button": "button4"
},
"to": [
{
"key_code": "left_arrow",
"modifiers": "left_control"
}
]
},
{
"type": "basic",
"from": {
"pointing_button": "button3",
"modifiers": {
"mandatory": [
"left_command"
]
}
},
"to": [
{
"key_code": "x",
"modifiers": [
"left_command",
"left_option"
]
},
{
"key_code": "h",
"modifiers": [
"left_command",
"left_option"
]
}
]
},
{
"type": "basic",
"from": {
"pointing_button": "button3"
},
"to": [
{
"key_code": "mission_control"
}
]
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment