Created
April 5, 2022 11:06
-
-
Save ndtn97/d2f37df239c95d83afd2a1eccd773504 to your computer and use it in GitHub Desktop.
Karabiner-Elements Command+Tab -> Mission Control
This file contains 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": "Command + Tab -> Mission Control", | |
"rules": [ | |
{ | |
"description": "Replace Command + Tab -> Mission Control", | |
"manipulators": [ | |
{ | |
"type": "basic", | |
"from": { | |
"key_code": "tab", | |
"modifiers": { | |
"mandatory": [ | |
"command" | |
] | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "up_arrow", | |
"modifiers": [ | |
"control" | |
] | |
} | |
] | |
} | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment