Skip to content

Instantly share code, notes, and snippets.

@unphased
Created December 19, 2024 00:11
Show Gist options
  • Save unphased/81ea09e9ca9b1af749e8134665f49843 to your computer and use it in GitHub Desktop.
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
{
"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