Skip to content

Instantly share code, notes, and snippets.

@mgdm
Last active January 14, 2024 11:51
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • 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"
]
}
}
}
]
}
]
}
@olejech
Copy link

olejech commented Jan 8, 2024

Here is new format of Karabiner shorcut:

{
    "description": "Prevent command-m minimize window",
    "manipulators": [
        {
            "from": {
                "key_code": "m",
                "modifiers": {
                    "mandatory": [
                        "command"
                    ]
                } 
            },
            "type": "basic"
        }
    ]
}

@Damian-LW
Copy link

BIG THANKS!

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