🐭

macOSでのThinkPad Keyboard TrackPoint速度変更

2023/05/26に公開

●概要

MacBookに「ThinkPad TrackPoint Keyboard」を繋いで使っているが、
TrackPointの動きが重く、masOSの「システム設定→マウス→軌跡の速さ」を最大値に設定しても
改善されず、、、

macOS defaults コマンドでマウス速度変更。
結果、速度改善できた。

●環境

  • MacBook M2 Pro
  • macOS Ventura 13.4
  • ThinkPad TrackPoint Keyboard

●マウス速度の確認

macOSの defaults コマンドで確認する

確認コマンド

$ defaults find scaling

コマンド実行結果

(省略)
  ・
  ・
}
Found 2 keys in domain 'Apple Global Domain': {
    "com.apple.mouse.scaling" = 3;
    "com.apple.scrollwheel.scaling" = "0.215";
}
  • マウス軌跡速度設定(com.apple.mouse.scaling) 3 になっていることが確認できる
    (システム設定での最大値が3だった)

●マウス軌跡速度を変更する

  • 速度10 に変更してみた
$ defaults write 'Apple Global Domain' com.apple.mouse.scaling 10

●PC再起動

  • 再起動後、TrackPointを使ってみたところ、カーソル動きが速くなった。
  • 当然のことだが、TrackPointだけではなく、マウスも感度アップされる。

Discussion