web-dev-qa-db-ja.com

thinkpad t420でのトラックポイントの不安定な動作[UBUNTU 18.04]

Ubuntu 18.04にアップグレードしたところ、トラックポイントに不規則な動作が表示されました。カーソルを一方向に移動する場合、最初にある方向に移動してから、正しい方向に移動します。

それは奇妙な振る舞いです。まるで安静になってから再び動き始めたときにリリースされるトラックポイントに何らかの運動量(慣性)が「スタック」しているようです。

この問題はトラックポイントでのみ発生し、両方の動きがトラックポイントでいけない場合にも発生します。 (つまり、マウス(またはタッチパッド)で移動し、トラックポイントで移動しても問題ありません。)

UBUNTU 17.10では正常に機能していました。

関連コマンドの出力は次のとおりです。

avila@t420s ~> xinput list-props "TPPS/2 IBM TrackPoint"

Device 'TPPS/2 IBM TrackPoint':
Device Enabled (142):   1
Coordinate Transformation Matrix (144): 1.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 1.000000
libinput Natural Scrolling Enabled (281):   0
libinput Natural Scrolling Enabled Default (282):   0
libinput Scroll Methods Available (285):    0, 0, 1
libinput Scroll Method Enabled (286):   0, 0, 1
libinput Scroll Method Enabled Default (287):   0, 0, 1
libinput Button Scrolling Button (288): 2
libinput Button Scrolling Button Default (289): 2
libinput Middle Emulation Enabled (290):    0
libinput Middle Emulation Enabled Default (291):    0
libinput Accel Speed (292): -0.683453
libinput Accel Speed Default (293): 0.000000
libinput Accel Profiles Available (294):    1, 1
libinput Accel Profile Enabled (295):   1, 0
libinput Accel Profile Enabled Default (296):   1, 0
libinput Left Handed Enabled (297): 0
libinput Left Handed Enabled Default (298): 0
libinput Send Events Modes Available (266): 1, 0
libinput Send Events Mode Enabled (267):    0, 0
libinput Send Events Mode Enabled Default (268):    0, 0
Device Node (269):  "/dev/input/event8"
Device Product ID (270):    2, 10
libinput Drag Lock Buttons (283):   <no items>
libinput Horizontal Scroll Enabled (284):   1
8
Marcelo Avila

加速プロファイルを無効にすると、次のことができます。

xinput --set-prop 'TPPS/2 IBM TrackPoint' 'libinput Accel Profile Enabled' 0, 1

次に、ポインターの速度を上げたい場合があります。

xinput --set-prop 'TPPS/2 IBM TrackPoint' 'libinput Accel Speed' 1

次回の起動時にデフォルトで加速プロファイルが再び有効になるため、上記のコマンドを含むスクリプトを作成でき、再起動後に自動的に実行されます。

お役に立てば幸いです。

6
John