Created
October 27, 2018 00:30
-
-
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
This file contains 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
{ | |
"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