Skip to content

Instantly share code, notes, and snippets.

@finlayjn
Created July 22, 2022 16:14
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 finlayjn/ef660395862ddde510a24735d18b5873 to your computer and use it in GitHub Desktop.
Save finlayjn/ef660395862ddde510a24735d18b5873 to your computer and use it in GitHub Desktop.
Karabiner-Elements Rule to Disable Control to Right Click in Minecraft on Mac
{
"title": "Minecraft Left Control Remap",
"rules": [
{
"description": "Map Left Control to Right Application/Menu",
"manipulators": [
{
"type": "basic",
"from": {
"key_code": "left_control",
"modifiers": {
"optional": [
"any"
]
}
},
"to": [
{
"key_code": "application"
}
],
"conditions": [
{
"type": "frontmost_application_if",
"file_paths": [
"^/Library/Java/JavaVirtualMachines/.+\\..+/Contents/Home/bin/java$"
]
}
]
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment