Skip to content

Instantly share code, notes, and snippets.

@stowen-msft
Created March 14, 2023 16:37
Show Gist options
  • Select an option

  • Save stowen-msft/6d696d6b7f01ab705766a51a274b7140 to your computer and use it in GitHub Desktop.

Select an option

Save stowen-msft/6d696d6b7f01ab705766a51a274b7140 to your computer and use it in GitHub Desktop.
Use Karabiner to remap the f5 dictation key to Teams Mute Shortcut

How to use

Download the file below and place in:

~/config/karabiner/assets/complex_modifications/muteButton.json

Then, open Karabiner and go to:

  • Preferences
  • ComplexModifications
  • Add Rule
  • Find the Rule as 'Mute Button Remap'
{
"title": "Mute Button Remap",
"rules": [
{
"description": "Dictate Button to Teams Mute Shortcut",
"manipulators": [
{
"type": "basic",
"from": {
"key_code": "f5"
},
"to": [
{
"key_code": "m",
"modifiers": [
"shift",
"command"
]
}
]
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment