Created
December 19, 2024 00:11
-
-
Save unphased/81ea09e9ca9b1af749e8134665f49843 to your computer and use it in GitHub Desktop.
karabiner elements tweak for my mouse based tab switching macros on Logitech mice in macos
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
{ | |
"description": "Adapt PC based automations I make in mice (right-ctrl pageup and right-ctrl pagedown) into the corresponding macos tab cycling shortcuts", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "page_up", | |
"modifiers": { | |
"mandatory": ["right_control"], | |
"optional": ["any"] | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "open_bracket", | |
"modifiers": ["right_shift", "right_gui"], | |
"repeat": true | |
} | |
], | |
"type": "basic" | |
}, | |
{ | |
"from": { | |
"key_code": "page_down", | |
"modifiers": { | |
"mandatory": ["right_control"], | |
"optional": ["any"] | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "close_bracket", | |
"modifiers": ["right_shift", "right_gui"], | |
"repeat": true | |
} | |
], | |
"type": "basic" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment