LoginSignup
19

More than 5 years have passed since last update.

macOS Sierra で karabiner を使いたい。設定サンプル

Last updated at Posted at 2016-09-23

karabiner

mac のキー設定でお世話になっている karabiner さん
今までの karabiner は Sierra に対応していない見たい
公式によると Sierra 対応すべく新しく作っている様子

公式

まだ絶賛開発中なのかキー設定は手動で json ファイルを作る必要あり

書き方はこちら

設定サンプル

実際に書いて見たので参考に載せておきます。(まだキーの置き換えしかできないみたい)
設定したのは以下のもの

  • 英語キーボードの「右command」を「かな」に変更
  • 英語キーボードの「右alt」を「英数」に変更 1
  • 「caps lock」を「control」に変更 2

~/.karabiner.d/configuration/karabiner.json

{
    "profiles": [
        {
            "name": "cap to control",
            "selected": true,
            "simple_modifications": {
                "caps_lock": "right_control",
                "right_command": "japanese_kana",
                "right_option": "japanese_eisuu"
            }
        }
    ]
}

  1. 本当は「左commando」を「かな」にしたいが単純な置き換えしかできないので「右alt」で一時代用 

  2. なぜか macOS の「設定」の「キーボード」で設定しても効かなかったので karabiner で設定 

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
19