我最近在我的 Dell XPS 笔记本电脑 (9360) 上安装了 Fedora,但触摸板一直给我带来问题。总体而言,它的响应速度似乎不太好(与同一台机器和其他笔记本电脑上的 Windows 相比)。主要问题是两根手指的滚动距离。如果我从触摸板的中心开始,直到我的手指距离触摸板顶部约 1/4 英寸(几乎没有实际滚动的空间)时才会检测到滚动
$ xinput list
⎡ Virtual core pointer id=2 [master pointer (3)]
⎜ ↳ Virtual core XTEST pointer id=4 [slave pointer (2)]
⎜ ↳ DELL08AF:00 06CB:76AF Touchpad id=10 [slave pointer (2)]
我遇到了触摸板断开连接/停止工作的一些问题,因此我还根据一些论坛禁用了 PS/2 设备
$ cat /usr/share/X11/xorg.conf.d/41-synaptics-quirks.conf
Section "InputClass"
Identifier "SynPS/2 Synaptics TouchPad"
MatchProduct "SynPS/2 Synaptics TouchPad"
MatchIsTouchpad "on"
MatchOS "Linux"
MatchDevicePath "/dev/input/event*"
Option "Ignore" "on"
EndSection