Skip to content

Instantly share code, notes, and snippets.

@say4n
Created May 24, 2024 23:03
Show Gist options
  • Save say4n/2175209fb708242b7e46919d9abbab7d to your computer and use it in GitHub Desktop.
Save say4n/2175209fb708242b7e46919d9abbab7d to your computer and use it in GitHub Desktop.
Karabiner mouse overrides!
{
"description": "Maps button 5 to left desktop switch, 4 to right desktop switch, 3 to mission control",
"manipulators": [
{
"from": {
"pointing_button": "button5"
},
"to": [
{
"key_code": "left_arrow",
"modifiers": "left_control"
}
],
"type": "basic"
},
{
"from": {
"pointing_button": "button4"
},
"to": [
{
"key_code": "right_arrow",
"modifiers": "left_control"
}
],
"type": "basic"
},
{
"from": {
"pointing_button": "button3"
},
"to": [
{
"key_code": "up_arrow",
"modifiers": "left_control",
"repeat": false
}
],
"type": "basic"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment