Skip to content

Instantly share code, notes, and snippets.

@jsulak
Last active April 30, 2020 17:42
Show Gist options
  • Save jsulak/8645e501a6ce5c6a0175a97bb2eb9d77 to your computer and use it in GitHub Desktop.
Save jsulak/8645e501a6ce5c6a0175a97bb2eb9d77 to your computer and use it in GitHub Desktop.
Karabiner modification - eject key mapped to f13, command-f13 sequence
{
"title": "Zoom audio toggle modification",
"rules": [
{
"description": "Eject key triggers two keyboard shortcuts",
"manipulators": [
{
"from": {
"consumer_key_code": "eject"
},
"to": [
{
"key_code": "a",
"modifiers" : ["command", "shift"]
},
{
"key_code": "f13",
"modifiers" : ["command"]
}
],
"type": "basic"
}
]
}]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment