Created
December 18, 2025 08:35
-
-
Save sagarpanchal/ca035685c85676b778e26aaa546a3013 to your computer and use it in GitHub Desktop.
Karabiner Elements (MacOS)
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": "ctrl+shift+1 - move cursor to center of screen 0 -- ctrl+shift+2 - move cursor to center of screen 1", | |
| "manipulators": [ | |
| { | |
| "type": "basic", | |
| "from": { "key_code": "1", "modifiers": { "mandatory": ["left_control", "left_shift"] } }, | |
| "to": [{ "software_function": { "set_mouse_cursor_position": { "screen": 0, "x": "50%", "y": "50%" } } }] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { "key_code": "2", "modifiers": { "mandatory": ["left_control", "left_shift"] } }, | |
| "to": [{ "software_function": { "set_mouse_cursor_position": { "screen": 1, "x": "50%", "y": "50%" } } }] | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment