Created
October 24, 2020 14:07
-
-
Save tjmgregory/ec1efccdd896ca9a82384d880e87502e to your computer and use it in GitHub Desktop.
Custom Karabiner-Elements ccos complex modification rule
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
// ... 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