我可以将命令绑定改回 Firefox 上的控制绑定吗?

我可以将命令绑定改回 Firefox 上的控制绑定吗?

我已经使用 Linux 多年了,刚刚买了一台 Mac。过去几天,有一件事一直困扰着我,那就是每个程序似乎都使用command而不是 快捷键Ctrl。特别是在 Firefox 中,快捷键(如Ctrl+ T)被切换为Command+ T。有人知道怎么把它们切换回来吗?我知道有一种方法可以完全切换这些键,但我仍然需要它们在我的虚拟机上正常工作。

答案1

您可以使用 Karabiner 来执行此操作 - bundle_indentifiers 仅将更改应用于选定的应用程序。

添加复合修饰

{
  "title": "apps",
  "rules": [
    {
      "description": "Browsers",
      "manipulators": [
        {
          "type": "basic",
          "conditions": [ { "bundle_identifiers": ["^org\\.mozilla\\.firefox", "^com\\.microsoft\\.edgemac", "^com\\.apple\\.Safari"], "type": "frontmost_application_if" } ],
          "from": { "key_code": "left_control" },
          "to": [ { "key_code": "left_command" } ]
        }]
    }]
}

相关内容