Last active
May 30, 2022 05:15
-
-
Save nandofalcao/e1a1e24bb7fd084bf35d35d409e1d403 to your computer and use it in GitHub Desktop.
Complex Modification for karabiner
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
{ | |
"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