Skip to content

Instantly share code, notes, and snippets.

@espoelstra
Last active August 6, 2019 19:42
Show Gist options
  • Save espoelstra/53c747a274a7b2b81652ab1cd74a13da to your computer and use it in GitHub Desktop.
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`
{
"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