美文网首页
Karabiner Double left_control to

Karabiner Double left_control to

作者: chozee | 来源:发表于2021-02-07 22:55 被阅读0次

    {
    "title": "Double left_control to become caps_lock",
    "rules": [
    {
    "description": "Double left_control to become caps_lock",
    "manipulators": [
    {
    "type": "basic",
    "from": {
    "key_code": "left_control",
    "modifiers": {
    "optional": ["any"]
    }
    },
    "to": [
    {
    "key_code": "caps_lock"
    }
    ],
    "conditions": [
    {
    "type": "variable_if",
    "name": "left_control pressed",
    "value": 1
    }
    ]
    },
    {
    "type": "basic",
    "from": {
    "key_code": "left_control",
    "modifiers": {
    "optional": ["any"]
    }
    },
    "to": [
    {
    "set_variable": {
    "name": "left_control pressed",
    "value": 1
    }
    },
    {
    "key_code": "left_control"
    }
    ],
    "to_delayed_action": {
    "to_if_invoked": [
    {
    "set_variable": {
    "name": "left_control pressed",
    "value": 0
    }
    }
    ],
    "to_if_canceled": [
    {
    "set_variable": {
    "name": "left_control pressed",
    "value": 0
    }
    }
    ]
    }
    }
    ]
    }
    ]
    }

    相关文章

      网友评论

          本文标题:Karabiner Double left_control to

          本文链接:https://www.haomeiwen.com/subject/ebbtxltx.html