Skip to content

Instantly share code, notes, and snippets.

@tedmielczarek-fastly
Created February 13, 2023 18:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tedmielczarek-fastly/185270f943be84227a15ef793593cab2 to your computer and use it in GitHub Desktop.
Save tedmielczarek-fastly/185270f943be84227a15ef793593cab2 to your computer and use it in GitHub Desktop.
Karabiner Elements rule to use KeyChron K8 microphone key with MuteDeck
{
"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