Last active
April 30, 2020 17:42
-
-
Save jsulak/8645e501a6ce5c6a0175a97bb2eb9d77 to your computer and use it in GitHub Desktop.
Karabiner modification - eject key mapped to f13, command-f13 sequence
This file contains hidden or 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 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