Created
October 30, 2025 11:09
-
-
Save NoRaincheck/2fc28c2f6f68a7cef6b71d2e4623d810 to your computer and use it in GitHub Desktop.
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
| { | |
| "description": "Remap mouse keys", | |
| "manipulators": [ | |
| { | |
| "from": { | |
| "key_code": "spacebar", | |
| "modifiers": { "mandatory": ["right_control"] } | |
| }, | |
| "to": [ | |
| { | |
| "modifiers": [], | |
| "pointing_button": "button1" | |
| } | |
| ], | |
| "type": "basic" | |
| }, | |
| { | |
| "from": { | |
| "key_code": "right_command", | |
| "modifiers": { "mandatory": ["right_control"] } | |
| }, | |
| "to": [ | |
| { | |
| "modifiers": [], | |
| "pointing_button": "button2" | |
| } | |
| ], | |
| "type": "basic" | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment