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


8

我刚刚升级到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

Answers:


6

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

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

然后,您可能想提高指针的速度:

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

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

希望能有所帮助。


谢谢!它确实解决了问题,但我确实没有想到加速配置文件。我可能会花更多时间。
Marcelo Avila
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.