美文网首页
2019-08-13 karabiner新配置备份 - capl

2019-08-13 karabiner新配置备份 - capl

作者: 死兔子2333 | 来源:发表于2019-08-13 11:41 被阅读0次

之前写的太乱了,映射了caplocks为command,导致出现了很多问题,现在简化一下,并成功做出来了调度中心的左右键。之前一直用鼠标来控制左右,现在换了鼠标没法匹配,只能在键盘上下功夫了,所幸做了出来,在这里备份下。

位置: userName->.config->karabiner->assets->complex_modifications


{
    "title": "Caplocks相关设置",
    "rules": [
        {
            "description": "CapsLock to Hyper/Escape 必须开启的基础",
            "manipulators": [
                {
                    "from": {
                        "key_code": "caps_lock",
                        "modifiers": {
                            "optional": [
                                "any"
                            ]
                        }
                    },
                    "to": [
                        {
                            "key_code": "right_shift",
                            "modifiers": [
                                "right_command",
                                "right_control",
                                "right_option"
                            ]
                        }
                    ],
                    "to_if_alone": [
                        {
                            "key_code": "escape"
                        }
                    ],
                    "type": "basic"
                }
            ]
        },
        {
            "description": "Capslock + s/e/d/f 转箭头",
            "manipulators": [
                {
                    "from": {
                        "key_code": "s",
                        "modifiers": {
                            "mandatory": [
                                "right_command",
                                "right_control",
                                "right_shift",
                                "right_option"
                            ]
                        }
                    },
                    "to": [
                        {
                            "key_code": "left_arrow"
                        }
                    ],
                    "type": "basic"
                },
                {
                    "from": {
                        "key_code": "e",
                        "modifiers": {
                            "mandatory": [
                                "right_command",
                                "right_control",
                                "right_shift",
                                "right_option"
                            ]
                        }
                    },
                    "to": [
                        {
                            "key_code": "up_arrow"
                        }
                    ],
                    "type": "basic"
                },
                {
                    "from": {
                        "key_code": "d",
                        "modifiers": {
                            "mandatory": [
                                "right_command",
                                "right_control",
                                "right_shift",
                                "right_option"
                            ]
                        }
                    },
                    "to": [
                        {
                            "key_code": "down_arrow"
                        }
                    ],
                    "type": "basic"
                },
                {
                    "from": {
                        "key_code": "f",
                        "modifiers": {
                            "mandatory": [
                                "right_command",
                                "right_control",
                                "right_shift",
                                "right_option"
                            ]
                        }
                    },
                    "to": [
                        {
                            "key_code": "right_arrow"
                        }
                    ],
                    "type": "basic"
                }
            ]
        },
        {
            "description": "Capslock + w/r切换窗口 + v调度中心",
            "manipulators": [
                {
                    "from": {
                        "key_code": "w",
                        "modifiers": {
                            "mandatory": [
                                "right_command",
                                "right_control",
                                "right_shift",
                                "right_option"
                            ]
                        }
                    },
                    "to": [
                        {
                            "key_code": "left_arrow",
                            "modifiers": [
                                "left_control"
                            ]
                        }
                    ],
                    "type": "basic"
                },
                {
                    "from": {
                        "key_code": "r",
                        "modifiers": {
                            "mandatory": [
                                "right_command",
                                "right_control",
                                "right_shift",
                                "right_option"
                            ]
                        }
                    },
                    "to": [
                        {
                            "key_code": "right_arrow",
                            "modifiers": [
                                "left_control"
                            ]
                        }
                    ],
                    "type": "basic"
                },
                {
                    "from": {
                        "key_code": "v",
                        "modifiers": {
                            "mandatory": [
                                "right_command",
                                "right_control",
                                "right_shift",
                                "right_option"
                            ]
                        }
                    },
                    "to": [
                        {
                            "key_code": "up_arrow",
                            "modifiers": [
                                "left_control"
                            ]
                        }
                    ],
                    "type": "basic"
                }
            ]
        }
    ]
}

相关文章

网友评论

      本文标题:2019-08-13 karabiner新配置备份 - capl

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