[Résolu] Sensibilité du touchpad impossible à régler

Bonjour à tous, je suis nouveau sur ce forum.
J’ai récemment installé Debian sur mon portable, mais le seul peripherique que je n’arrive pas à paramétrer est le touchpad. J’ai donc installé gsynaptics et configuré le xorg.conf. Gsynaptics se lance correctement, mais lorsque je change la sensibilité cela n’a aucun effet :confused: .

Merci d’avance pour votre aide.

Voici le contenu du fichier xorg.conf :

[quote]

/etc/X11/xorg.conf (xorg X Window System server configuration file)

This file was generated by dexconf, the Debian X Configuration tool, using

values from the debconf database.

Edit this file with caution, and see the /etc/X11/xorg.conf manual page.

(Type “man /etc/X11/xorg.conf” at the shell prompt.)

This file is automatically updated on xserver-xorg package upgrades only

if it has not been modified since the last upgrade of the xserver-xorg

package.

If you have edited this file but would like it to be automatically updated

again, run the following command:

sudo dpkg-reconfigure -phigh xserver-xorg

Section "Files"
FontPath "/usr/share/fonts/X11/misc"
FontPath "/usr/X11R6/lib/X11/fonts/misc"
FontPath "/usr/share/fonts/X11/cyrillic"
FontPath "/usr/X11R6/lib/X11/fonts/cyrillic"
FontPath "/usr/share/fonts/X11/100dpi/:unscaled"
FontPath "/usr/X11R6/lib/X11/fonts/100dpi/:unscaled"
FontPath "/usr/share/fonts/X11/75dpi/:unscaled"
FontPath "/usr/X11R6/lib/X11/fonts/75dpi/:unscaled"
FontPath "/usr/share/fonts/X11/Type1"
FontPath "/usr/X11R6/lib/X11/fonts/Type1"
FontPath "/usr/share/fonts/X11/100dpi"
FontPath "/usr/X11R6/lib/X11/fonts/100dpi"
FontPath "/usr/share/fonts/X11/75dpi"
FontPath “/usr/X11R6/lib/X11/fonts/75dpi”
# path to defoma fonts
FontPath "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
EndSection

Section "Module"
Load "i2c"
Load "bitmap"
Load "ddc"
Load "dri"
Load "extmod"
Load "freetype"
Load "glx"
Load "int10"
Load "vbe"
EndSection

Section "InputDevice"
Identifier "Generic Keyboard"
Driver "kbd"
Option "CoreKeyboard"
Option “XkbRules” "xorg"
Option “XkbModel” "pc105"
Option “XkbLayout” "fr"
Option “XkbVariant” "latin9"
EndSection

Section "InputDevice"
Identifier "Configured Mouse"
Driver "mouse"
Option "CorePointer"
Option “Device” "/dev/input/mice"
Option “Protocol” "ImPS/2"
Option “Emulate3Buttons” "true"
EndSection

Section "InputDevice"
Identifier "Synaptics Touchpad"
Driver "synaptics"
Option “SendCoreEvents” "true"
Option “Device” "/dev/psaux"
Option “Protocol” "auto-dev"
Option “HorizScrollDelta” "0"
Option “SHMConfig” "true"
EndSection

Section "Device"
Identifier "Intel Corporation Mobile 945GM/GMS/940GML Express Integrated Graphics Controller"
Driver "i810"
BusID "PCI:0:2:0"
EndSection

Section "Monitor"
Identifier "Generic Monitor"
Option "DPMS"
EndSection

Section "Screen"
Identifier "Default Screen"
Device "Intel Corporation Mobile 945GM/GMS/940GML Express Integrated Graphics Controller"
Monitor "Generic Monitor"
DefaultDepth 24
SubSection "Display"
Depth 1
Modes "1400x1050"
EndSubSection
SubSection "Display"
Depth 4
Modes "1400x1050"
EndSubSection
SubSection "Display"
Depth 8
Modes "1400x1050"
EndSubSection
SubSection "Display"
Depth 15
Modes "1400x1050"
EndSubSection
SubSection "Display"
Depth 16
Modes "1400x1050"
EndSubSection
SubSection "Display"
Depth 24
Modes "1400x1050"
EndSubSection
EndSection

Section "ServerLayout"
Identifier "Default Layout"
Screen "Default Screen"
InputDevice "Generic Keyboard"
InputDevice "Configured Mouse"
InputDevice "Synaptics Touchpad"
EndSection

Section "DRI"
Mode 0666
EndSection
[/quote][/code]

Je ne vois pas trop, le option “SHMConfig” est bien à true (tu peux essayer “on” et “1” à tous hasards), donc ça devrait marcher.

Sinon, tu peux peut être faire ta config en dur dans le xorg.conf en t’inspirant de ça:

[code]
Section "InputDevice"
Identifier "Synaptics Touchpad"
Driver "synaptics"
Option “SendCoreEvents” “true”

Option “Protocol” “auto-dev”

Option “Device” "/dev/psaux"
Option “LeftEdge” "50"
Option “RightEdge” “900” # max 950
Option “TopEdge” "30"
Option “BottomEdge” “304” # max 334
Option “FingerLow” "15"
Option “FingerHigh” "20"
Option “MaxTapTime” "180"
Option “MaxTapMove” "100"
Option “MaxDoubleTapTime” "180"
Option “ClickTime” "100"
Option “FastTaps” "0"
Option “VertScrollDelta” "15"
Option “HorizScrollDelta” "15"
Option “EdgeMotionMinZ” "30"
Option “EdgeMotionMaxZ” "160"
Option “EdgeMotionMinSpeed” "1"
Option “EdgeMotionMaxSpeed” "400"
Option “EdgeMotionUseAlways” "false"
Option “MinSpeed” "0.2"
Option “MaxSpeed” "0.75"
Option “AccelFactor” "0.030"
Option “LockedDrags” "true"
Option “RTCornerButton” "0"
Option “RBCornerButton” "0"
Option “LTCornerButton” "0"
Option “LBCornerButton” "0"
Option “TapButton1” "1"
Option “TapButton2” "2"
Option “TapButton3” "3"
Option “CircularScrolling” "0"
Option “CircScrollDelta” "0.1"
Option “CircScrollTrigger” "1"
Option “PalmDetect” "false"
Option “CoastingSpeed” "1"
Option “SHMConfig” “on”
##Activer le défilement vertical et horizontal avec deux doigts
Option “VertTwoFingerScroll” "true"
Option “HorizTwoFingerScroll” “true”

EndSection[/code]

C’est parfait ça marche. Merci encore. :smiley:

Une petite question, j’ai réutilisé ces paramètres, je suis parvenu a accélérer la sensibilité du touchpad, par contre j’ai perdu le double clic sur le touchpad (pas celui avec le bouton en dessous).

Si quelqu’un pouvait me conseiller sur l’option a rajouter ou modifier.

Merci.

Compare avec le mien, je ne connais pas l’option mais j’ai le “double-clic” qui fonctionne :

Section "InputDevice" Identifier "Synaptics Touchpad" Driver "synaptics" Option "SendCoreEvents" "true" Option "Device" "/dev/psaux" Option "Protocol" "auto-dev" Option "LeftEdge" "120" Option "RightEdge" "830" Option "TopEdge" "120" Option "BottomEdge" "650" Option "FingerLow" "14" Option "FingerHigh" "15" Option "MaxTapTime" "180" Option "MaxTapMove" "110" Option "EmulateMidButtonTime" "75" Option "VertScrollDelta" "20" Option "HorizScrollDelta" "20" Option "MinSpeed" "0.3" Option "MaxSpeed" "0.75" Option "AccelFactor" "0.015" Option "EdgeMotionMinSpeed" "200" Option "EdgeMotionMaxSpeed" "200" Option "UpDownScrolling" "1" Option "CircularScrolling" "1" Option "CircScrollDelta" "0.1" Option "CircScrollTrigger" "2" Option "SHMConfig" "On" Option "CorePointer" EndSection

J’ai repris les mêmes paramètres que toi avec les mêmes valeurs et il ne marche toujours pas.

Donc je remet par défaut, ça marche mais le pointeur est assez lent.

J’ai eu un souci sur ma sid, le touchpad ne fonctionnait plus avec mes réglages cités plus haut.
Résolu en enlevant l’option Corepointer.
Au cas où :

Section "InputDevice" Identifier "Synaptics Touchpad" Driver "synaptics" Option "SendCoreEvents" "true" Option "Device" "/dev/psaux" Option "Protocol" "auto-dev" Option "LeftEdge" "120" Option "RightEdge" "830" Option "TopEdge" "120" Option "BottomEdge" "650" Option "FingerLow" "14" Option "FingerHigh" "15" Option "MaxTapTime" "180" Option "MaxTapMove" "110" Option "EmulateMidButtonTime" "75" Option "VertScrollDelta" "20" Option "HorizScrollDelta" "20" Option "MinSpeed" "0.3" Option "MaxSpeed" "0.75" Option "AccelFactor" "0.015" Option "EdgeMotionMinSpeed" "200" Option "EdgeMotionMaxSpeed" "200" Option "UpDownScrolling" "1" Option "CircularScrolling" "1" Option "CircScrollDelta" "0.1" Option "CircScrollTrigger" "2" Option "SHMConfig" "On" EndSection

ça marche nickel, merci :astonished: