Skip to content

Instantly share code, notes, and snippets.

@SavvyGuard
Created October 27, 2018 00:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SavvyGuard/b1123fe4d4f9c0de701547a44b16a821 to your computer and use it in GitHub Desktop.
Save SavvyGuard/b1123fe4d4f9c0de701547a44b16a821 to your computer and use it in GitHub Desktop.
Karabiner complex modification to allow for mouse support in browser in Mac OS
{
"title": "Mac OS Mouse Browser",
"rules": [{
"description": "Use button 4 and 5 on Mac OS for browser",
"manipulators": [{
"type": "basic",
"from": {
"pointing_button": "button4"
},
"to": [{
"key_code": "left_arrow",
"modifiers": [
"left_command"
]
}]
},
{
"type": "basic",
"from": {
"pointing_button": "button5"
},
"to": [{
"key_code": "right_arrow",
"modifiers": [
"left_command"
]
}]
}
]
}]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment