Skip to content

Instantly share code, notes, and snippets.

@SamWolski
Created December 9, 2024 10:06
Show Gist options
  • Save SamWolski/bfdef9dfb6ed7c309334696f819f6691 to your computer and use it in GitHub Desktop.
Save SamWolski/bfdef9dfb6ed7c309334696f819f6691 to your computer and use it in GitHub Desktop.
Karabiner-Elements mouse buttons to change spaces
{
"description": "Mouse buttons to change spaces (ctrl+arrows)",
"manipulators": [
{
"from": { "pointing_button": "button4" },
"to": [
{
"key_code": "right_arrow",
"modifiers": ["left_control"]
}
],
"type": "basic"
},
{
"from": { "pointing_button": "button5" },
"to": [
{
"key_code": "left_arrow",
"modifiers": ["left_control"]
}
],
"type": "basic"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment