|
|
发表于 2006-9-22 18:09:45
|
显示全部楼层
Post by Yuri
在gnome下,我的IBM R51e笔记本下面那三个鼠标键的中间怎么驱动起来啊?
不用装什么驱动的,在xorg.conf中设置一下就可以了,- Section "InputDevice"
- Identifier "ThinkPad TrackPoint"
- Driver "mouse"
- Option "CorePointer"
- Option "Protocol" "imPS/2"
- Option "Device" "/dev/input/mouse1"
- Option "Emulate3Buttons" "no"
- Option "EmulateWheel" "true"
- Option "EmulateWheelButton" "2"
- Option "YAxisMapping" "4 5"
- Option "XAxisMapping" "6 7"
- Option "EmulateWheelInertia" "50"
- EndSection
- Section "InputDevice"
- Identifier "Logitech VX Revolution"
- Driver "evdev"
- Option "Device" "/dev/input/event3"
- Option "SendCoreEvents" "true"
- Option "Buttons" "12"
- EndSection
- Section "InputDevice"
- Identifier "Synaptics Touchpad"
- Driver "synaptics"
- Option "SendCoreEvents" "true"
- Option "Device" "/dev/input/mouse0"
- Option "Protocol" "auto-dev"
- Option "HorizScrollDelta" "0"
- EndSection
复制代码 这是我T60上的设置,可以同时使用触摸板、指点杆和外接的鼠标,能使用中键粘贴和像windows下那样配合指点杆滚屏。
lz可以参考一下 |
|