hi leute,
ich versuche auf meinem laptop das touchpad und meine usb-maus gleichzeitig zum laufen zu kriegen.
alleine funktionieren beide einwandfrei, ich will aber nicht jedes mal die /etc/X11/XF86Config ändern.
hier ein auszug:
# USB mouse
Section "InputDevice"
Identifier "Mouse1"
Driver "mouse"
Option "Protocol" "IMPS/2"
Option "Device" "/dev/input/mice"
Option "ZAxisMapping" "4 5"
EndSection
# Touchpad
Section "InputDevice"
Identifier "Mouse2"
Driver "mouse"
Option "Protocol" "Auto"
Option "Device" "/dev/mouse"
EndSection
[...]
Section "ServerLayout"
Screen "Screen 1"
InputDevice "Mouse1" "CorePointer"
InputDevice "Mouse2"
InputDevice "Keyboard1" "CoreKeyboard"
# Here are a few options for saving power (especially on batteries)
Option "BlankTime" "5" # Blank the screen after 5 minutes (Fake)
Option "StandbyTime" "10" # Turn off screen after 10 minutes (DPMS)
Option "SuspendTime" "20" # Full suspend after 20 minutes
Option "OffTime" "30" # Turn off after half an hour
EndSection
es funktioniert immer nur die, die als Mouse1 definiert ist.
kann mir wer erklären, was ich noch brauche?
danke, b