Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kingtosh/e28dbb2b60dd09dbbc04a3bf86d1d753 to your computer and use it in GitHub Desktop.
Save kingtosh/e28dbb2b60dd09dbbc04a3bf86d1d753 to your computer and use it in GitHub Desktop.
karabiner-elementsの設定(左controlを2回連打したらSafariが立ち上がる)
{
"description": "Double tap 'left_control' to 'open -a 'safari'",
"manipulators": [
{
"type": "basic",
"from": { "key_code": "left_control" },
"to": [
{ "shell_command": "open -a 'safari'" }
],
"conditions": [
{
"type": "variable_if",
"name": "left_control_key",
"value": 1
}
]
},
{
"type": "basic",
"from": {
"key_code": "left_control",
"modifiers": {
"optional": [ "any" ]
}
},
"to": [
{
"set_variable": {
"name": "left_control_key",
"value": 1
}
},
{ "key_code": "left_control" }
],
"to_delayed_action": {
"to_if_invoked": [
{
"set_variable": {
"name": "left_control_key",
"value": 0
}
}
],
"to_if_canceled": [
{
"set_variable": {
"name": "left_control_key",
"value": 0
}
}
]
},
"conditions": [
{
"type": "variable_if",
"name": "left_control_key",
"value": 0
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment