Skip to content

Instantly share code, notes, and snippets.

@sagarpanchal
Created December 18, 2025 08:35
Show Gist options
  • Select an option

  • Save sagarpanchal/ca035685c85676b778e26aaa546a3013 to your computer and use it in GitHub Desktop.

Select an option

Save sagarpanchal/ca035685c85676b778e26aaa546a3013 to your computer and use it in GitHub Desktop.
Karabiner Elements (MacOS)
{
"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