Karabiner-Elementsのキー配列設定のエクスポートとインポート方法

@Panda_Program

自宅と会社のパソコンでキー配列を一致させたかったので忘れないようにメモ。

キー設定をエクスポートする方法

Karabiner-Elementsでは設定ファイルはjson形式で管理されている。 下記のファイルを設定を反映させたいパソコンに送る。

$ ~/.config/karabiner/karabiner.json

オートメーションリロード機構 Karabiner-Elementsは〜/ .config / karabiner / karabiner.jsonを監視し、更新されたらそれをリロードします。 メカニズムは、Karabiner-ElementsがファイルシステムイベントAPIを使用して親ディレクトリ〜/ .config /karabinerを監視するというものです。

出典:karabiner.jsonリファレンスマニュアル

Karabiner-Elementsに設定をインポートする方法

反映させる側のパソコンでkarabiner.jsonを先ほどのディレクトリに格納。

$ ~/.config/karabiner/karabiner.json

すでにファイルが作成されている場合は、そのファイルを上書きする。 ファイルシステムイベントAPIがkarabinerディレクトリを監視しているので、ファイルを置くと設定は即時反映される

私の設定(karabiner.json)

私はHHKBのJIS配列を使っています。参考までに設定ファイルkarabiner.jsonを記載します。

karabiner.json
{
    "global": {
        "check_for_updates_on_startup": true,
        "show_in_menu_bar": true,
        "show_profile_name_in_menu_bar": false
    },
    "profiles": [
        {
            "complex_modifications": {
                "parameters": {
                    "basic.simultaneous_threshold_milliseconds": 50,
                    "basic.to_delayed_action_delay_milliseconds": 500,
                    "basic.to_if_alone_timeout_milliseconds": 1000,
                    "basic.to_if_held_down_threshold_milliseconds": 500,
                    "mouse_motion_to_scroll.speed": 100
                },
                "rules": []
            },
            "devices": [
                {
                    "disable_built_in_keyboard_if_exists": false,
                    "fn_function_keys": [],
                    "identifiers": {
                        "is_keyboard": true,
                        "is_pointing_device": false,
                        "product_id": 3,
                        "vendor_id": 11240
                    },
                    "ignore": false,
                    "manipulate_caps_lock_led": false,
                    "simple_modifications": [
                        {
                            "from": {
                                "key_code": "delete_forward"
                            },
                            "to": {
                                "key_code": "delete_or_backspace"
                            }
                        },
                        {
                            "from": {
                                "key_code": "f1"
                            },
                            "to": {
                                "consumer_key_code": "display_brightness_decrement"
                            }
                        },
                        {
                            "from": {
                                "key_code": "f2"
                            },
                            "to": {
                                "consumer_key_code": "display_brightness_increment"
                            }
                        },
                        {
                            "from": {
                                "key_code": "f10"
                            },
                            "to": {
                                "consumer_key_code": "mute"
                            }
                        },
                        {
                            "from": {
                                "key_code": "f11"
                            },
                            "to": {
                                "consumer_key_code": "volume_decrement"
                            }
                        },
                        {
                            "from": {
                                "key_code": "f12"
                            },
                            "to": {
                                "consumer_key_code": "volume_increment"
                            }
                        },
                        {
                            "from": {
                                "key_code": "insert"
                            },
                            "to": {
                                "key_code": "delete_or_backspace"
                            }
                        },
                        {
                            "from": {
                                "key_code": "japanese_pc_katakana"
                            },
                            "to": {
                                "key_code": "right_command"
                            }
                        },
                        {
                            "from": {
                                "key_code": "japanese_pc_nfer"
                            },
                            "to": {
                                "key_code": "japanese_eisuu"
                            }
                        },
                        {
                            "from": {
                                "key_code": "japanese_pc_xfer"
                            },
                            "to": {
                                "key_code": "japanese_kana"
                            }
                        }
                    ]
                },
                {
                    "disable_built_in_keyboard_if_exists": false,
                    "fn_function_keys": [],
                    "identifiers": {
                        "is_keyboard": true,
                        "is_pointing_device": false,
                        "product_id": 13,
                        "vendor_id": 1278
                    },
                    "ignore": false,
                    "manipulate_caps_lock_led": false,
                    "simple_modifications": [
                        {
                            "from": {
                                "key_code": "caps_lock"
                            },
                            "to": {
                                "key_code": "left_control"
                            }
                        },
                        {
                            "from": {
                                "key_code": "international2"
                            },
                            "to": {
                                "key_code": "right_command"
                            }
                        },
                        {
                            "from": {
                                "key_code": "international4"
                            },
                            "to": {
                                "key_code": "japanese_kana"
                            }
                        },
                        {
                            "from": {
                                "key_code": "international5"
                            },
                            "to": {
                                "key_code": "japanese_eisuu"
                            }
                        },
                        {
                            "from": {
                                "key_code": "left_alt"
                            },
                            "to": {
                                "key_code": "left_command"
                            }
                        },
                        {
                            "from": {
                                "key_code": "left_control"
                            },
                            "to": {
                                "key_code": "caps_lock"
                            }
                        },
                        {
                            "from": {
                                "key_code": "left_gui"
                            },
                            "to": {
                                "key_code": "left_option"
                            }
                        }
                    ]
                }
            ],
            "fn_function_keys": [
                {
                    "from": {
                        "key_code": "f1"
                    },
                    "to": {
                        "consumer_key_code": "display_brightness_decrement"
                    }
                },
                {
                    "from": {
                        "key_code": "f2"
                    },
                    "to": {
                        "consumer_key_code": "display_brightness_increment"
                    }
                },
                {
                    "from": {
                        "key_code": "f3"
                    },
                    "to": {
                        "key_code": "mission_control"
                    }
                },
                {
                    "from": {
                        "key_code": "f4"
                    },
                    "to": {
                        "key_code": "launchpad"
                    }
                },
                {
                    "from": {
                        "key_code": "f5"
                    },
                    "to": {
                        "key_code": "illumination_decrement"
                    }
                },
                {
                    "from": {
                        "key_code": "f6"
                    },
                    "to": {
                        "key_code": "illumination_increment"
                    }
                },
                {
                    "from": {
                        "key_code": "f7"
                    },
                    "to": {
                        "consumer_key_code": "rewind"
                    }
                },
                {
                    "from": {
                        "key_code": "f8"
                    },
                    "to": {
                        "consumer_key_code": "play_or_pause"
                    }
                },
                {
                    "from": {
                        "key_code": "f9"
                    },
                    "to": {
                        "consumer_key_code": "fastforward"
                    }
                },
                {
                    "from": {
                        "key_code": "f10"
                    },
                    "to": {
                        "consumer_key_code": "mute"
                    }
                },
                {
                    "from": {
                        "key_code": "f11"
                    },
                    "to": {
                        "consumer_key_code": "volume_decrement"
                    }
                },
                {
                    "from": {
                        "key_code": "f12"
                    },
                    "to": {
                        "consumer_key_code": "volume_increment"
                    }
                }
            ],
            "name": "Default profile",
            "parameters": {
                "delay_milliseconds_before_open_device": 1000
            },
            "selected": true,
            "simple_modifications": [],
            "virtual_hid_keyboard": {
                "country_code": 0,
                "mouse_key_xy_scale": 100
            }
        }
    ]
}

Happy Coding 🎉

パンダのイラスト
パンダ

記事が面白いと思ったらツイートやはてブをお願いします!皆さんの感想が執筆のモチベーションになります。最後まで読んでくれてありがとう。

  • Share on Hatena
  • Share on Twitter
  • Share on Line
  • Copy to clipboard

Tips」カテゴリの投稿