我正在使用 Fedora 18。我正在尝试配置我的 synaptics 触摸板,我需要在 Awesome Window Manager 中进行点击和水平滚动。
/etc/X11/xorg.conf.d/50-synaptics.conf
我创建了一个包含以下内容的文件:
Section "InputDevice"
Identifier "touchpad"
Driver "synaptics"
MatchIsTouchpad "on"
Option "HorizEdgeScroll" "on"
EndSection
但是当我启动系统时,它在不同的地方挂起,我经常看到的是:
Failed to start Wait for Plymouth Boot Screen to Quit.
See 'systemctl status plymouth-quit-wait.service' for details.
如果您想要日志文件或其他东西,请告诉我如何获取它。
答案1
将第一行更改50-synaptics.conf
为
Section "InputClass"
InputDevice
用于定义特定设备的规则和选项,我不确定它是否仍然受支持。
InputClass
是一个较新的部分,允许根据各种匹配规则匹配多个连接的设备。因为你有MatchIsTouchpad
你应该使用的线路InputClass
。通过这种方式,您可以告诉 xorg 将这些规则与所有触摸板相匹配。你可以看到 Fedora文档更多细节。