0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

US Keyboard の Mac で (Amazon Workspaces や RDPの)WindowsのIME切替を楽にする。

Last updated at Posted at 2022-01-11
  1. 後述の4remotewindows.jsonを、~/.config/karabiner/assets/complex_modificationsに配置する。
  2. Karabiner-Elementsの[Complex modifications]-[Add rule]より、1の設定を「Enable」する。
  3. Windowsの[Microsoft IME の設定]-[詳細設定]-[キー設定]-[変更]から、「Ctrl+SPACE」の「入力/変換済み文字なし」を「IME-オン/オフ」に変更する。
4remotewindows.json
{
  "title": "For Remote Windows",
  "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$",
                "^com\\.microsoft\\.rdc\\.macos$"
              ],
              "description": "対象アプリを追加する場合は、bundelidentifierを追記"
            }
          ]
        }
      ]
    }
  ]
}
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?