Created
May 14, 2020 07:08
-
-
Save kotobuki/44fb966ff609a3c68f1f3e4898fb9fed to your computer and use it in GitHub Desktop.
A Rule for Karabiner-Elements Complex to Control Mute/Unmute in Zoom with Eject Key
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": "Zoom", | |
"rules": [ | |
{ | |
"description": "Map eject to command + shift + a", | |
"manipulators": [ | |
{ | |
"type": "basic", | |
"from": { | |
"consumer_key_code": "eject" | |
}, | |
"to": [ | |
{ | |
"key_code": "a", | |
"modifiers": ["left_command", "left_shift"] | |
} | |
] | |
} | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment