thinkpad t420s 上轨迹点的不稳定行为 [UBUNTU 18.04]

avi*_*ila 8 thinkpad trackpoint libinput 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
Run Code Online (Sandbox Code Playgroud)

小智 6

禁用加速配置文件有助于:

xinput --set-prop 'TPPS/2 IBM TrackPoint' 'libinput Accel Profile Enabled' 0, 1
Run Code Online (Sandbox Code Playgroud)

那么您可能想要提高指针的速度:

xinput --set-prop 'TPPS/2 IBM TrackPoint' 'libinput Accel Speed' 1
Run Code Online (Sandbox Code Playgroud)

由于下次启动时默认情况下将再次启用加速配置文件,您可以创建一个包含上述命令的脚本,并在重新启动后自动运行。

希望有帮助。