Last active
March 19, 2023 09:03
-
-
Save Nezteb/e095a16f1df39bb5f5cec4fec4599471 to your computer and use it in GitHub Desktop.
Add fn/ctrl/cmd + left click -> right click: https://genesy.github.io/karabiner-complex-rules-generator/#eyJ0aXRsZSI6IkFkZCBjdHJsL2ZuICsgbGVmdCBjbGljayAtPiByaWdodCBjbGljayIsInJ1bGVzIjpbeyJkZXNjcmlwdGlvbiI6ImN0cmwrbGVmdCBjbGljayB0byByaWdodCBjbGljayIsIm1hbmlwdWxhdG9ycyI6W3sidHlwZSI6ImJhc2ljIiwiZnJvbSI6eyJwb2ludGluZ19idXR0b24iOiJidXR0b24xIiwibW9kaW…
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"title": "Add ctrl/fn/cmd + left click -> right click", | |
"rules": [ | |
{ | |
"description": "ctrl+left click to right click", | |
"manipulators": [ | |
{ | |
"type": "basic", | |
"from": { | |
"pointing_button": "button1", | |
"modifiers": { | |
"mandatory": [ | |
"left_control" | |
] | |
} | |
}, | |
"to": [ | |
{ | |
"pointing_button": "button2", | |
"repeat": false | |
} | |
] | |
} | |
] | |
}, | |
{ | |
"description": "fn+left click to right click", | |
"manipulators": [ | |
{ | |
"type": "basic", | |
"from": { | |
"modifiers": { | |
"mandatory": [ | |
"fn" | |
] | |
}, | |
"pointing_button": "button1" | |
}, | |
"to": [ | |
{ | |
"repeat": false, | |
"pointing_button": "button2" | |
} | |
] | |
} | |
] | |
}, | |
{ | |
"description": "cmd+left click to right click", | |
"manipulators": [ | |
{ | |
"type": "basic", | |
"from": { | |
"modifiers": { | |
"mandatory": [ | |
"left_gui" | |
] | |
}, | |
"pointing_button": "button1" | |
}, | |
"to": [ | |
{ | |
"repeat": false, | |
"pointing_button": "button2" | |
} | |
] | |
} | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment