Inoltre.....esisterebbe un modo per farsi che tutti e due i dispositivi ossia touchpad e mouse usb funzionino insieme? Se si se mi potete spiegare la procedura passo passo di modo che sia semplice.....
Heidegger:-D
Moderatore: Staff


Codice: Seleziona tutto
.................................................................
Section "ServerLayout"
Identifier "X.org Configured"
Screen 0 "Screen0" 0 0
InputDevice "Mouse0" "CorePointer"
InputDevice "Mouse2" "SendCoreEvents"
InputDevice "Keyboard0" "CoreKeyboard"
EndSection
..........................................................................
Section "InputDevice"
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "auto"
Option "Protocol" "IMPS/2"
Option "Device" "/dev/mouse"
# Option "Emulate3Buttons" "no"
Option "ZAxisMapping" "4 5"
Option "resolution" "600"
EndSection
Section "InputDevice"
Identifier "Mouse2"
#======usare questa sezione se si vogliono usare i driver synaptics=====#
Driver "synaptics" #
Option "Device" "/dev/psaux" #
Option "Protocol" "auto-dev" #
Option "LeftEdge" "1700" #
Option "RightEdge" "5300" #
Option "TopEdge" "1700" #
Option "BottomEdge" "4200" #
Option "FingerLow" "25" #
Option "FingerHigh" "30" #
Option "MaxTapTime" "180" #
Option "MaxTapMove" "220" #
Option "VertScrollDelta" "100" #
Option "MinSpeed" "0.06" #
Option "MaxSpeed" "0.12" #
Option "AccelFactor" "0.0010" #
Option "SHMConfig" "on" #
# Option "Repeater" "/dev/ps2mouse" #
#=======================================================================#
#=======================================================================#
#=======usare questa sezione se non si usano idriver synaptics==========#
# Driver "mouse" #
# Option "Protocol" "PS/2" #
# Option "Device" "/dev/psaux" #
# Option "Emulate3Buttons" "no" #
# Option "Device" "/dev/mouse" #
# Option "ZAxisMapping" "4 5" #
#=======================================================================#
EndSection
....................................................................................................
Codice: Seleziona tutto
#USB Mouse Configuration
Section "InputDevice"
Identifier "Mouse1"
Driver "mouse"
Option "Device" "/dev/psaux"
# Nel mio caso è indifferente mettere /dev/psaux o /dev/input/mouse1
Option "Buttons" "5"
Option "ZAxisMapping" "4 5"
EndSection
# Touchpad Configuration
Section "InputDevice"
Identifier "Mouse2"
Driver "mouse"
Option "Protocol" "auto"
Option "Device" "/dev/input/mouse0"
EndSectionCodice: Seleziona tutto
Section "ServerFlags"Codice: Seleziona tutto
Option "AllowMouseOpenFail" "1"
Codice: Seleziona tutto
# Identifier and driver
Identifier "Mouse1"
Driver "mouse"
# On platforms where PnP mouse detection is supported the following
# protocol setting can be used when using a newer PnP mouse:
# Option "Protocol" "Auto"
# The available mouse protocols types that you can set below are:
# Auto BusMouse GlidePoint GlidePointPS/2 IntelliMouse IMPS/2
# Logitech Microsoft MMHitTab MMSeries Mouseman MouseManPlusPS/2
# MouseSystems NetMousePS/2 NetScrollPS/2 OSMouse PS/2 SysMouse
# ThinkingMouse ThinkingMousePS/2 Xqueue
Option "Protocol" "PS/2"
# The mouse device. The device is normally set to /dev/mouse,
# which is usually a symbolic link to the real device.
Option "Device" "/dev/mouse"
# Option "Device" "/dev/psaux"
# Option "Device" "/dev/ttyS0"
# Option "Device" "/dev/ttyS1"
# When using XQUEUE, comment out the above two lines, and uncomment
# the following line.
# Option "Protocol" "Xqueue"
# Baudrate and SampleRate are only for some Logitech mice. In
# almost every case these lines should be omitted.
# Option "BaudRate" "9600"
# Option "SampleRate" "150"
# Emulate3Buttons is an option for 2-button Microsoft mice
# Emulate3Timeout is the timeout in milliseconds (default is 50ms)
# Option "Emulate3Buttons"
# Option "Emulate3Timeout" "50"
# ChordMiddle is an option for some 3-button Logitech mice
# Option "ChordMiddle"
# Option "ZAxisMapping" "4 5"
EndSection
