Last active
November 5, 2022 08:19
-
-
Save esc5221/f5c95239e03aa30e408a93cc43675122 to your computer and use it in GitHub Desktop.
karabiner chrome tab navigation with right command and right option
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
"rules": [ | |
{ | |
"description": "Use right command and right option as chrome tab navigation", | |
"manipulators": [ | |
{ | |
"conditions": [ | |
{ | |
"identifiers": [ | |
{ | |
"vendor_id": 1452 | |
}, | |
{ | |
"vendor_id": 76 | |
} | |
], | |
"type": "device_if" | |
} | |
], | |
"from": { | |
"key_code": "right_option" | |
}, | |
"to": [ | |
{ | |
"key_code": "right_arrow", | |
"modifiers": [ | |
"command", | |
"option" | |
] | |
} | |
], | |
"type": "basic" | |
}, | |
{ | |
"conditions": [ | |
{ | |
"identifiers": [ | |
{ | |
"vendor_id": 1452 | |
}, | |
{ | |
"vendor_id": 76 | |
} | |
], | |
"type": "device_if" | |
} | |
], | |
"from": { | |
"key_code": "right_command" | |
}, | |
"to": [ | |
{ | |
"key_code": "left_arrow", | |
"modifiers": [ | |
"command", | |
"option" | |
] | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment