Skip to content

Instantly share code, notes, and snippets.

@2GMon
Created May 28, 2018 02:00
Show Gist options
  • Save 2GMon/8106a65f0094e20bd2b494bed538a0a0 to your computer and use it in GitHub Desktop.
Save 2GMon/8106a65f0094e20bd2b494bed538a0a0 to your computer and use it in GitHub Desktop.
Firefoxのタブ切り替え用karabiner-element設定
{
"title": "Firefox Tab Manipulater",
"rules": [
{
"description": "Firefox Tab Manipulation",
"manipulators": [
{
"type": "basic",
"from": {
"key_code": "t"
},
"to": [
{
"set_variable": {
"name": "firefox_tab_manipulation_mode",
"value": 1
}
}
],
"to_if_alone": [
{
"key_code": "t"
}
],
"to_after_key_up": [
{
"set_variable": {
"name": "firefox_tab_manipulation_mode",
"value": 0
}
}
],
"conditions": [
{
"type": "frontmost_application_if",
"bundle_identifiers": [
"^org\\.mozilla\\.firefox"
]
}
]
},
{
"type": "basic",
"from": {
"key_code": "h"
},
"to": [
{
"key_code": "tab",
"modifiers": [ "control", "shift" ]
}
],
"conditions": [
{
"type": "variable_if",
"name": "firefox_tab_manipulation_mode",
"value": 1
}
]
},
{
"type": "basic",
"from": {
"key_code": "l"
},
"to": [
{
"key_code": "tab",
"modifiers": [ "control" ]
}
],
"conditions": [
{
"type": "variable_if",
"name": "firefox_tab_manipulation_mode",
"value": 1
}
]
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment