Skip to content

Instantly share code, notes, and snippets.

@tjmgregory
Created October 24, 2020 14:07
Show Gist options
  • Save tjmgregory/ec1efccdd896ca9a82384d880e87502e to your computer and use it in GitHub Desktop.
Save tjmgregory/ec1efccdd896ca9a82384d880e87502e to your computer and use it in GitHub Desktop.
Custom Karabiner-Elements ccos complex modification rule
// ... all the bits before
{
"description": "ccos + s to open Slack.",
"manipulators": [
{
"from": {
"key_code": "s",
"modifiers": {
"mandatory": [
"shift",
"control",
"command",
"option"
]
}
},
"to": [
{
"shell_command": "open -a /Applications/Slack.app"
}
],
"type": "basic"
}
]
}
// ... all the bits after
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment