LoginSignup
0
0

More than 5 years have passed since last update.

Karabiner elements 設定例

Posted at

Sierra で karabiner が動かなくなったので、Karabiner elements に移行しました。
左利き用の下記設定です。

  • shift+delete to command+v
  • fn+delete to command+c
~/.config/karabiner/assets/complex_modifications/123456789.json
{
  "title": "Lefty Key",
  "rules": [
    {
      "description": "Change shift+delete to command+v",
      "manipulators": [
        {
          "type": "basic",
          "from": {
            "key_code": "delete_or_backspace",
            "modifiers": { "mandatory": [ "right_shift" ] }
          },
          "to": [
            {
              "key_code": "v",
               "modifiers": ["right_command"]
            }
          ]
        }
      ]
    },
        {
      "description": "Change fn+delete to command+c",
      "manipulators": [
        {
          "type": "basic",
          "from": {
            "key_code": "delete_or_backspace",
            "modifiers": { "mandatory": [ "fn" ] }
          },
          "to": [
            {
              "key_code": "c",
               "modifiers": ["right_command"]
            }
          ]
        }
      ]
    }
  ]
}
0
0
1

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