Created
February 13, 2023 18:23
Karabiner Elements rule to use KeyChron K8 microphone key with MuteDeck
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": "Keychron K8 Microphone Button to MuteDeck Mute", | |
"rules": [ | |
{ | |
"description": "Toggle mute via MuteDeck API", | |
"manipulators": [ | |
{ | |
"from": { | |
"modifiers": { | |
"mandatory": [ | |
"fn" | |
] | |
}, | |
"key_code": "spacebar" | |
}, | |
"to": [ | |
{ | |
"shell_command": "curl --silent -X POST http://localhost:3491/v1/mute", | |
"lazy": true | |
} | |
], | |
"type": "basic" | |
} | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment