PDA

Archiv verlassen und diese Seite im Standarddesign anzeigen : Notebookmaus und normale Maus gleichzeitig



make
20.12.03, 13:56
Hallo zusammen

Ich habe ein Notebook. Ist es irgendwie möglich, gleichzeitig die angeschlossene USB-Maus und das Mousepad zu benutzen? Ich möchte nicht jedes mal alles neu konfigurieren, wenn ich unterwegs bin und keine USB-Maus angeschlossen habe!

fy-hz
20.12.03, 14:09
hallo,
füge dazu einfach in deine "XF86Config-4" 2 "InputDevice"s ein.
Bei mir schaut es so aus:


Section "InputDevice"
Identifier "PS/2 Mouse"
Driver "mouse"
Option "Protocol" "PS/2"
#Option "ZAxisMapping" "4 5"
Option "Device" "/dev/psaux"
Option "Emulate3Buttons" "true"
#Option "Emulate3Timeout" "70"
#Option "SendCoreEvents" "true"
EndSection


Section "InputDevice"
Identifier "USB Mouse"
Driver "mouse"
Option "Device" "/dev/input/mice"
Option "SendCoreEvents" "true"
Option "Protocol" "IMPS/2"
Option "ZAxisMapping" "4 5"
Option "Buttons" "5"
EndSection


hoffe es klappt bei dir.

mfg
fy-hz

make
20.12.03, 14:48
Ok danke, werd ich probieren!