【KB】通过Karabiner-Elements实现 optionTAB与 commandTAB 对调/映射 win 的 altTAB 习惯

学习Karabiner-Elements的第一个 demo,因为推荐的例子中过多参数,这是一个简化版。
需求:对调 optionTAB与 commandTAB,然后安装 altTAB 软件,恢复win切换任务的使用习惯。


{
    "description": "Change tab",
    "manipulators": [
        {
            "from": {
                "key_code": "caps_lock",
                "modifiers": {
                    "mandatory":  "left_control"
                }
            },
            "to": 
                {
                    "key_code": "tab",
                    "modifiers": ["left_control", "left_shift"]  
                },
                "type": "basic"
        },
        {
            "from": {
                "key_code": "tab",
                "modifiers": {
                    "mandatory": "command"
                }
            },
            "to": {
                "key_code": "tab",
                "modifiers": [
                    "option"
                ]
            },
            "type": "basic"
        },
        {
            "from": {
                "key_code": "tab",
                "modifiers": {
                    "mandatory": "option"
                }
            },
            "to": {
                "key_code": "tab",
                "modifiers": [
                    "command"
                ]
            },
            "type": "basic"
        }
    ]
}

最近更新

  1. docker php8.1+nginx base 镜像 dockerfile 配置

    2024-03-25 16:02:01       94 阅读
  2. Could not load dynamic library ‘cudart64_100.dll‘

    2024-03-25 16:02:01       101 阅读
  3. 在Django里面运行非项目文件

    2024-03-25 16:02:01       82 阅读
  4. Python语言-面向对象

    2024-03-25 16:02:01       91 阅读

热门阅读

  1. flutter 单例模式

    2024-03-25 16:02:01       43 阅读
  2. 说一说promise是什么与使用方法

    2024-03-25 16:02:01       40 阅读
  3. 【Flutter学习笔记】10.1 自定义组件方法简介

    2024-03-25 16:02:01       38 阅读
  4. IOS面试题编程机制 36-40

    2024-03-25 16:02:01       39 阅读
  5. 「Linux系列」Shell 输入/输出重定向

    2024-03-25 16:02:01       43 阅读
  6. Flask蓝图找不到路由地址,访问404

    2024-03-25 16:02:01       39 阅读
  7. git 代码冲突处理

    2024-03-25 16:02:01       36 阅读
  8. 机器人|逆运动学问题解决方法总结

    2024-03-25 16:02:01       37 阅读
  9. PyTorch张量

    2024-03-25 16:02:01       45 阅读