Skip to content

Instantly share code, notes, and snippets.

@mgdm
Last active January 14, 2024 11:51
Show Gist options
  • Save mgdm/dc94df9b407f38af4c819f9a4e5cd956 to your computer and use it in GitHub Desktop.
Save mgdm/dc94df9b407f38af4c819f9a4e5cd956 to your computer and use it in GitHub Desktop.
Custom modification for Karabiner to disable the cmd-m minimise shortcut
{
"title": "Prevent unintended command-m minimising",
"rules": [
{
"description": "Disable Cmd+m minimise",
"manipulators": [
{
"type": "basic",
"description": "",
"from": {
"key_code": "m",
"modifiers": {
"mandatory": [
"command"
]
}
}
}
]
}
]
}
@Damian-LW
Copy link

BIG THANKS!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment