Skip to content

Instantly share code, notes, and snippets.

@ndtn97
Created April 5, 2022 11:06
Show Gist options
  • Save ndtn97/d2f37df239c95d83afd2a1eccd773504 to your computer and use it in GitHub Desktop.
Save ndtn97/d2f37df239c95d83afd2a1eccd773504 to your computer and use it in GitHub Desktop.
Karabiner-Elements Command+Tab -> Mission Control
{
"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