ただし、MacはUS配列のキーボードとし、IME切替は昔ながらのCommand+Space。
Windowsは、以下の例では、AmazonWorkspacesを使用する。
Karabiner-Elements Preferences > Misc > Open config folder
rulesに以下を追加。
  "rules": [
    {
      "description": "Switch IME Mode with Command+SPACE",
      "manipulators": [
        {
          "type": "basic",
          "from": {
            "key_code": "spacebar",
            "modifiers": {
              "mandatory":["left_command"]
            }
          },
          "to": [
            {
              "key_code": "spacebar",
              "modifiers": "left_control"
            }
          ],
          "conditions":[
            {
              "type": "frontmost_application_if",
              "bundle_identifiers":[
                "^com\\.amazon\\.workspaces$"            
              ],
              "description": " in Amazon Workspaces"
            }
          ]
        }
      ]
    }
  ]