Skip to content

Instantly share code, notes, and snippets.

@esc5221
Last active November 5, 2022 08:19
Show Gist options
  • Save esc5221/f5c95239e03aa30e408a93cc43675122 to your computer and use it in GitHub Desktop.
Save esc5221/f5c95239e03aa30e408a93cc43675122 to your computer and use it in GitHub Desktop.
karabiner chrome tab navigation with right command and right option
"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