我的联想笔记本电脑的触摸板灵敏度大幅下降

我的联想笔记本电脑的触摸板灵敏度大幅下降

从 Windows 切换到 Ubuntu 后,我的联想笔记本电脑的触摸板灵敏度大幅下降。

我尝试安装 synaptics 驱动程序,但并没有改善它。

以前我的触摸板非常灵敏(我喜欢这一点),但现在我必须频繁滑动。有什么帮助吗?

答案1

您可以从 调整敏感度xinput

首先要了解触摸板 ID:

$ xinput list
⎡ Virtual core pointer                      id=2    [master pointer  (3)]
⎜   ↳ Virtual core XTEST pointer                id=4    [slave  pointer  (2)]
⎜   ↳ ETPS/2 Elantech Touchpad                  id=13   [slave  pointer  (2)]
⎣ Virtual core keyboard                     id=3    [master keyboard (2)]
    ↳ Virtual core XTEST keyboard               id=5    [slave  keyboard (3)]
........

所以我的触摸板ETPS/2 Elantech 触摸板ID 为 13。

现在使用它检查加速度曲线:

$ xinput list-props 13 | grep Accel
Device Accel Profile (262): 1
Device Accel Constant Deceleration (263):   2.500000
Device Accel Adaptive Deceleration (264):   1.000000
Device Accel Velocity Scaling (265):    12.500000

价值设备加速度恒定减速度 (263)是您需要更改的。

您可以通过以下方式减小此值来降低减速度(使其更快):

$ xinput set-prop 13 263 1.25

这里的数字 13 是您的触摸板的 ID,这里的 263 是您想要更改的选项,1.25 将使其速度快一倍,您可以尝试一下看看哪个值符合您的期望。

参考:如何设置鼠标灵敏度,而不仅仅是鼠标加速度?

答案2

我很久以前就能够解决这个问题。今天发布解决方案 -

您可以使用以下命令(在您的终端中)修改触摸板速度:

“synclient 加速因子=0.5”

“synclient 最小速度=3”

“synclient 最大速度=7”

值越高,灵敏度越高。AccelFactor 是加速度,即当您尝试移动指针时,光标移动的速度有多快。MinSpeed 和 MaxSpeed 为移动速度设置了下限和上限。

答案3

我正在用这个;

xset m 2 1
synclient TouchpadOff=1

我首先想到的是,所以不要怪罪于我,第一个 [xset] 使鼠标速度提高了一倍。第二个 [synclient] 禁用了触摸板,如果经常使用指点杆,这可能会很烦人。

相关内容