Last active
August 6, 2019 19:42
-
-
Save espoelstra/53c747a274a7b2b81652ab1cd74a13da to your computer and use it in GitHub Desktop.
Add custom Tabs Outliner overrides for "rux616/karabiner-windows-mode" `karabiner://karabiner/assets/complex_modifications/import?url=https://gist.githubusercontent.com/espoelstra/53c747a274a7b2b81652ab1cd74a13da/raw/tabs_outliner.json`
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": "Tabs Outliner overrides", | |
"rules": [ | |
{ | |
"description": "X (Ctrl+Shift) [Only Chrome]", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "x", | |
"modifiers": { "mandatory": ["control", "shift"]} | |
}, | |
"to": [{ | |
"key_code": "x", | |
"modifiers": ["control","shift"] | |
}], | |
"conditions": [ | |
{ | |
"type": "frontmost_application_if", | |
"bundle_identifiers": [ | |
"^com\\.google\\.Chrome", | |
"^com\\.google\\.Chrome-beta", | |
"^com\\.google\\.Chrome-dev" | |
] | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "W (Ctrl+Shift) [Only Chrome]", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "w", | |
"modifiers": { "mandatory": ["control", "shift"]} | |
}, | |
"to": [{ | |
"key_code": "w", | |
"modifiers": ["control","shift"] | |
}], | |
"conditions": [ | |
{ | |
"type": "frontmost_application_if", | |
"bundle_identifiers": [ | |
"^com\\.google\\.Chrome", | |
"^com\\.google\\.Chrome-beta", | |
"^com\\.google\\.Chrome-dev" | |
] | |
} | |
], | |
"type": "basic" | |
} | |
] | |
}, | |
{ | |
"description": "Q (Ctrl+Shift) [Only Chrome]", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "q", | |
"modifiers": { "mandatory": ["control", "shift"]} | |
}, | |
"to": [{ | |
"key_code": "q", | |
"modifiers": ["control","shift"] | |
}], | |
"conditions": [ | |
{ | |
"type": "frontmost_application_if", | |
"bundle_identifiers": [ | |
"^com\\.google\\.Chrome", | |
"^com\\.google\\.Chrome-beta", | |
"^com\\.google\\.Chrome-dev" | |
] | |
} | |
], | |
"type": "basic" | |
} | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment