Karabiner-Elements 不支持使用波浪键 ~ 作为修饰键吗

12次阅读

共计 470 个字符,预计需要花费 2 分钟才能阅读完成。

{
  "title": "Map ~ + 3 to ctrl+3 in Browsers",
  "rules": [
    {
      "description": "Map ~ + 3 to ctrl+3 in Specific Browsers",
      "manipulators": [
        {
          "type": "basic",
          "from": {
            "key_code": "3",
            "modifiers": {"mandatory": ["grave_accent_and_tilde"]
            }
          },
          "to": [
            {
              "key_code": "3",
              "modifiers": ["left_control"]
            }
          ],
          "conditions": [
            {
              "type": "frontmost_application_if",
              "bundle_identifiers": [
                "^com\.google\.Chrome$",
                "^com\.vivaldi\.Vivaldi$"
              ]
            }
          ]
        }
      ]
    }
  ]
}

上面配置不生效,chatgpt 说不支持。
貌似这个程序也不能实现按 F1 输入 888888 这样的功能

查了下 Hammerspoon 挺强大的,话说 win 下的 autohotkey 好用

正文完
 0