i got an usb-mouse.
today i searched a bit and did replace the following:
- Code: Select all
#Section "InputDevice"
# Identifier "Configured Mouse"
# Driver "synaptics"
# Option "SHMConfig" "true"
#EndSection
with this
- Code: Select all
Section "InputDevice"
Identifier "Mouse0"
Driver "mouse"
Option "SendCoreEvents" "true"
Option "Device" "/dev/input/mice"
Option "Protocol" "auto"
Option "ZAxisMapping" "4 5 6 7"
EndSection
but X didnt work no more. i checked the error-log and had to comment out the following line:
- Code: Select all
Section "ServerLayout"
Identifier "Default Layout"
Screen "Default Screen" 0 0
InputDevice "Generic Keyboard"
# InputDevice "Configured Mouse" # this one gave me the trouble
Option "AIGLX" "true"
EndSection
It now does work, but it did also work with the synaptic entry...
Is the configuration correct now? for me its all outer-space-language.
thanks in advance