← Back to team overview

sony-vaio-z-series team mailing list archive

Re: Touchpad for z2

 

>This image is just a debian squeeze, and I installed wheezy after that, therefore I'm wondering what the difference is between that and my current system, to try and have this behaviour on wheezy. As I >said it seems that in the live image, the synaptics driver is not used. Therefore do you have any idea on how this live system handles the touchpad ?


I believe there was a change in the synaptics driver on what flags the device was getting, but essentially I had to fix the xserver udev rules to not look for Synaptics anymore in order to apply the touchpad settings. I'm running wheeze/sid and I have all the scrolls and taps and clicks working. I have a file /etc/X11/xorg.conf.d/10-synaptics.conf with the following contents


Section "InputClass"
        Identifier "touchpad catchall"
        Driver  "synaptics"
        MatchIsTouchpad "on"
        MatchDevicePath "/dev/input/event*"
        Option  "TapButton1"    "1"
        Option  "TapButton2"    "3"
        Option  "TapButton3"    "2"
        Option  "FastTaps"      "1"
        Option  "VertEdgeScroll"        "1"
        Option  "HorizEdgeScroll"       "1"
        Option  "CornerCoasting"        "1"
        Option  "CoastingSpeed" "0.30"
        Option  "PalmDetect"    "true"
        Option  "VertTwoFingerScroll"   "true"
        Option  "HorizTwoFingerScroll"  "true"
        Option  "SHMConfig"     "on"
        Option  "SendCoreEvents"


        Option   "MaxDoubleTapTime" "50"
        Option   "LBCornerButton" "1"
        Option   "RBCornerButton" "3"
        Option   "FingerLow" "7"
        Option   "FingerHigh" "8"
        Option   "MaxTapTime" "180"
        Option   "MaxTapMove" "110"
        Option   "VertScrollDelta" "20"
        Option   "HorizScrollDelta" "20"
        Option   "MinSpeed" "0.60"
        Option   "MaxSpeed" "1.10"
        Option   "AccelFactor" "0.030"
        Option   "EdgeMotionMinSpeed" "200"
        Option   "EdgeMotionMaxSpeed" "200"
EndSection


Before I had Synaptic as the identifier, now I have just touchpad catchall


References