Macbook air(2020 M1)でthinkpad trackpoint keyboard iiを使うためにやったこと

前提
- 接続:bluetooth
追記 USB接続でも接続を確認。


基本設定

以下サイトを参考。
一番左下がcommandキーになるようにした。

つまり
left ctrl --> left command
Win.     --> left option
left alt. -->left command
になるようにした。

Bluetooth接続時はtarget deviceの名前の最後は(lenovo)ではないが,設定の中身は変わらない。

設定はこんな感じ。マウスでの設定が面倒なので,このページ最後のコードをコピペするのがおすすめ。


本ページ最後のコードを以下のファイルに貼れば一発。

~/.config/karabiner/karabiner.json



JISキーボードなのにUSキーボードとして認識されてしまう問題
以下で解決。


中クリックをうまく使う:ダブルクリック設定

これをすれば,thinkpadのスクロールができる上,中クリックで「新しいタブで開く・タブを閉じる」ができるようになる!便利!

アプリの設定
~/.config/karabiner/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": 150
                },
                "rules": [
                    {
                        "available_since": "12.3.0",
                        "description": "Change button4 + mouse motion to scroll wheel (rev 1)",
                        "manipulators": [
                            {
                                "from": {
                                    "modifiers": {
                                        "optional": [
                                            "any"
                                        ]
                                    },
                                    "pointing_button": "button4"
                                },
                                "to": [
                                    {
                                        "set_variable": {
                                            "name": "enable_mouse_motion_to_scroll",
                                            "value": 1
                                        }
                                    }
                                ],
                                "to_after_key_up": [
                                    {
                                        "set_variable": {
                                            "name": "enable_mouse_motion_to_scroll",
                                            "value": 0
                                        }
                                    }
                                ],
                                "type": "basic"
                            },
                            {
                                "conditions": [
                                    {
                                        "name": "enable_mouse_motion_to_scroll",
                                        "type": "variable_if",
                                        "value": 1
                                    }
                                ],
                                "from": {
                                    "modifiers": {
                                        "optional": [
                                            "any"
                                        ]
                                    }
                                },
                                "type": "mouse_motion_to_scroll"
                            }
                        ]
                    }
                ]
            },
            "devices": [
                {
                    "disable_built_in_keyboard_if_exists": false,
                    "fn_function_keys": [],
                    "identifiers": {
                        "is_keyboard": true,
                        "is_pointing_device": false,
                        "product_id": 641,
                        "vendor_id": 1452
                    },
                    "ignore": true,
                    "manipulate_caps_lock_led": true,
                    "simple_modifications": []
                },
                {
                    "disable_built_in_keyboard_if_exists": false,
                    "fn_function_keys": [],
                    "identifiers": {
                        "is_keyboard": true,
                        "is_pointing_device": true,
                        "product_id": 24801,
                        "vendor_id": 6127
                    },
                    "ignore": false,
                    "manipulate_caps_lock_led": false,
                    "simple_modifications": [
                        {
                            "from": {
                                "key_code": "button3"
                            },
                            "to": [
                                {
                                    "key_code": "left_control"
                                },
                                {
                                    "key_code": "left_control"
                                }
                            ]
                        },
                        {
                            "from": {
                                "key_code": "caps_lock"
                            },
                            "to": [
                                {
                                    "key_code": "left_control"
                                }
                            ]
                        },
                        {
                            "from": {
                                "key_code": "international2"
                            },
                            "to": [
                                {
                                    "key_code": "lang1"
                                }
                            ]
                        },
                        {
                            "from": {
                                "key_code": "international4"
                            },
                            "to": [
                                {
                                    "key_code": "lang1"
                                }
                            ]
                        },
                        {
                            "from": {
                                "key_code": "international5"
                            },
                            "to": [
                                {
                                    "key_code": "lang2"
                                }
                            ]
                        },
                        {
                            "from": {
                                "key_code": "japanese_pc_katakana"
                            },
                            "to": [
                                {
                                    "key_code": "japanese_kana"
                                }
                            ]
                        },
                        {
                            "from": {
                                "key_code": "japanese_pc_nfer"
                            },
                            "to": [
                                {
                                    "key_code": "japanese_eisuu"
                                }
                            ]
                        },
                        {
                            "from": {
                                "key_code": "japanese_pc_xfer"
                            },
                            "to": [
                                {
                                    "key_code": "japanese_kana"
                                }
                            ]
                        },
                        {
                            "from": {
                                "key_code": "left_alt"
                            },
                            "to": [
                                {
                                    "key_code": "lang2"
                                }
                            ]
                        },
                        {
                            "from": {
                                "key_code": "left_control"
                            },
                            "to": [
                                {
                                    "key_code": "left_option"
                                }
                            ]
                        },
                        {
                            "from": {
                                "key_code": "left_option"
                            },
                            "to": [
                                {
                                    "key_code": "left_command"
                                }
                            ]
                        },
                        {
                            "from": {
                                "key_code": "right_alt"
                            },
                            "to": [
                                {
                                    "key_code": "right_command"
                                }
                            ]
                        },
                        {
                            "from": {
                                "key_code": "right_control"
                            },
                            "to": [
                                {
                                    "key_code": "right_option"
                                }
                            ]
                        },
                        {
                            "from": {
                                "key_code": "right_option"
                            },
                            "to": [
                                {
                                    "key_code": "right_command"
                                }
                            ]
                        }
                    ]
                },
                {
                    "disable_built_in_keyboard_if_exists": false,
                    "fn_function_keys": [],
                    "identifiers": {
                        "is_keyboard": true,
                        "is_pointing_device": false,
                        "product_id": 24814,
                        "vendor_id": 6127
                    },
                    "ignore": false,
                    "manipulate_caps_lock_led": true,
                    "simple_modifications": [
                        {
                            "from": {
                                "key_code": "grave_accent_and_tilde"
                            },
                            "to": [
                                {
                                    "key_code": "f13"
                                }
                            ]
                        },
                        {
                            "from": {
                                "key_code": "international2"
                            },
                            "to": [
                                {
                                    "key_code": "lang1"
                                }
                            ]
                        },
                        {
                            "from": {
                                "key_code": "international4"
                            },
                            "to": [
                                {
                                    "key_code": "lang1"
                                }
                            ]
                        },
                        {
                            "from": {
                                "key_code": "international5"
                            },
                            "to": [
                                {
                                    "key_code": "lang2"
                                }
                            ]
                        },
                        {
                            "from": {
                                "key_code": "japanese_pc_katakana"
                            },
                            "to": [
                                {
                                    "key_code": "japanese_kana"
                                }
                            ]
                        },
                        {
                            "from": {
                                "key_code": "japanese_pc_nfer"
                            },
                            "to": [
                                {
                                    "key_code": "japanese_eisuu"
                                }
                            ]
                        },
                        {
                            "from": {
                                "key_code": "japanese_pc_xfer"
                            },
                            "to": [
                                {
                                    "key_code": "japanese_kana"
                                }
                            ]
                        },
                        {
                            "from": {
                                "key_code": "left_alt"
                            },
                            "to": [
                                {
                                    "key_code": "left_command"
                                }
                            ]
                        },
                        {
                            "from": {
                                "key_code": "left_command"
                            },
                            "to": [
                                {
                                    "key_code": "left_option"
                                }
                            ]
                        },
                        {
                            "from": {
                                "key_code": "left_control"
                            },
                            "to": [
                                {
                                    "key_code": "left_command"
                                }
                            ]
                        },
                        {
                            "from": {
                                "key_code": "right_alt"
                            },
                            "to": [
                                {
                                    "key_code": "right_command"
                                }
                            ]
                        },
                        {
                            "from": {
                                "key_code": "right_command"
                            },
                            "to": [
                                {
                                    "key_code": "right_option"
                                }
                            ]
                        },
                        {
                            "from": {
                                "key_code": "right_control"
                            },
                            "to": [
                                {
                                    "key_code": "right_command"
                                }
                            ]
                        },
                        {
                            "from": {
                                "key_code": "caps_lock"
                            },
                            "to": [
                                {
                                    "key_code": "left_control"
                                }
                            ]
                        }
                    ]
                },
                {
                    "disable_built_in_keyboard_if_exists": false,
                    "fn_function_keys": [],
                    "identifiers": {
                        "is_keyboard": false,
                        "is_pointing_device": true,
                        "product_id": 24814,
                        "vendor_id": 6127
                    },
                    "ignore": false,
                    "manipulate_caps_lock_led": false,
                    "simple_modifications": []
                }
            ],
            "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": [
                        {
                            "apple_vendor_keyboard_key_code": "mission_control"
                        }
                    ]
                },
                {
                    "from": {
                        "key_code": "f4"
                    },
                    "to": [
                        {
                            "apple_vendor_keyboard_key_code": "spotlight"
                        }
                    ]
                },
                {
                    "from": {
                        "key_code": "f5"
                    },
                    "to": [
                        {
                            "consumer_key_code": "dictation"
                        }
                    ]
                },
                {
                    "from": {
                        "key_code": "f6"
                    },
                    "to": [
                        {
                            "key_code": "f6"
                        }
                    ]
                },
                {
                    "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": "fast_forward"
                        }
                    ]
                },
                {
                    "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": "New profile",
            "parameters": {
                "delay_milliseconds_before_open_device": 1000
            },
            "selected": true,
            "simple_modifications": [],
            "virtual_hid_keyboard": {
                "country_code": 45,
                "indicate_sticky_modifier_keys_state": true,
                "mouse_key_xy_scale": 100
            }
        }
    ]
}

この記事が気に入ったらサポートをしてみませんか?