|
xorg-server在1.5.3后,鼠标和键盘可以有HAL来管理,Thinkpad Trackpoint中键滚轮功能的配置详见以前的帖子http://www.linuxsir.cn/bbs/thread341470.html
与时俱进,技术在进步。xorg-server到1.8.0后,udev取代HAL了,鼠标和键盘不需要什么设置已经能够正常使用,但象Trackpoint的中键滚轮仍需要设置一下(这个功能真的不错,尤其是习惯后),设置又回到了/etc/X11/xorg.conf上,需要加入如下部分即可:- Section "InputClass"
- Identifier "Wheel Emulation"
- MatchIsPointer "on"
- MatchProduct "TrackPoint"
- Option "EmulateWheelButton" "2"
- Option "EmulateWheel" "on"
- Option "XAxisMapping" "6 7"
- Option "YAxisMapping" "4 5"
- Option "ZAxisMapping" "4 5"
- Option "Emulate3Buttons" "true"
- EndSection
复制代码 通过以上设置后,横向纵向均能够使用了,其他鼠标等硬件的特殊功能也可以参考这样设置,希望对大家有帮助。
参考网页:https://fedoraproject.org/wiki/Input_device_configuration |
|