Skip to content

Instantly share code, notes, and snippets.

@kotobuki
Created May 14, 2020 07:08
Show Gist options
  • Save kotobuki/44fb966ff609a3c68f1f3e4898fb9fed to your computer and use it in GitHub Desktop.
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
{
"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