|
发表于 2003-8-5 11:04:03
|
显示全部楼层
鼠标部分这样配:
# **********************************************************************
# Core Pointer's InputDevice section
# **********************************************************************
Section "InputDevice"
# Identifier and driver
Identifier "USBMouse"
Driver "mouse"
Option "CorePointer"
Option " rotocol" "Auto"
Option "Device" "/dev/sysmouse"
Option "Emulate3Buttons" "true"
Option "ZAxisMapping" "4 5"
EndSection
Section "InputDevice"
Identifier "TrackPoint"
Driver "mouse"
Option "SendCoreEvents" "true"
Option "Device" "/dev/psm0"
Option " rotocol" "Auto"
Option "Emulate3Buttons" "true"
Option "ZAxisMapping" "4 5"
EndSection
然后layout这样配
# **********************************************************************
# ServerLayout sections.
# **********************************************************************
Section "ServerLayout"
# The Identifier line must be present
Identifier "IBM ThinkPad Layout"
Screen "IBM TFT Screen"
InputDevice "Internal Keyboard"
InputDevice "TrackPoint"
InputDevice "USBMouse"
EndSection
这样就以usb mouse为首选,ps/2 mouse为第二选择,可同时使用两种鼠标,也可单独使用每种。 |
|