Difference between revisions of "Package:Synaptics"

From Funtoo
Jump to navigation Jump to search
m
m (make it more responsive)
Line 43: Line 43:
...
...
         Option "CircularScrolling" "on"
         Option "CircularScrolling" "on"
         Option "CircScrollTrigger" "3"
         Option "CircScrollTrigger" "1"
...
...
EndSection
EndSection

Revision as of 20:55, May 23, 2015

Synaptics

   Tip

We welcome improvements to this page. To edit this page, Create a Funtoo account. Then log in and then click here to edit this page. See our editing guidelines to becoming a wiki-editing pro.

Synaptics is the driver for laptop touchpad mice.

   /etc/portage/make.conf
INPUT_DEVICES="synaptics evdev"

Your system should have a /etc/X11/xorg.conf.d directory. If there isn't one create it:

root # mkdir /etc/X11/xorg.conf.d
   /etc/X11/xorg.conf.d/50-synaptics.conf
Section "InputClass"
        Identifier "touchpad catchall"
        Driver "synaptics"
        MatchIsTouchpad "on"
        Option "VertEdgeScroll" "on"
        Option      "CircularScrolling"         "off"
        Option      "VertScrollDelta"          "-111"
        Option      "HorizScrollDelta"         "-111"
        Option      "TapButton1"       	          "1"
EndSection

Invert Scroll

   /etc/X11/xorg.conf.d/50-synaptics.conf
Section "InputClass"
...
        Option      "VertScrollDelta"          "111"
...
EndSection

Circular Scroll

Entire trackpad outline is a scroll wheel:

   /etc/X11/xorg.conf.d/50-synaptics.conf
Section "InputClass"
...
        Option "CircularScrolling" "on"
        Option "CircScrollTrigger" "1"
...
EndSection