Comment 3 for bug 952170

Revision history for this message
dannycandel (danny-candle) wrote :

Hi guys. I have system wide native natural scrolling that's done through xorg rather than a 3rd party app. I think that implementing this by default in elementary would be as simple as editing the file "xorg.conf" at /etc/X11/

For me, adding the following text to the file brought be perfect natural scrolling on a macbook 6,1 but I'm sure it must be different with different computers and input devices.

Section "InputClass"
    Identifier "Touchpad"
    Driver "synaptics"
    MatchIsTouchpad "on"
    Option "ClickFinger3" "2"
    Option "HorizTwoFingerScroll" "1"
    Option "VertScrollDelta" "-85"
    Option "HorizScrollDelta" "-85"
    Option "TapButton1" "0"
    Option "TapButton2" "0"
    Option "TapButton3" "0"
    Option "FingerHigh" "8"
    Option "FingerLow" "8"
EndSection