Difference between revisions of "Package:Synaptics"

From Funtoo
Jump to navigation Jump to search
(Created page with "{{Ebuild |Summary=Driver for Synaptics touchpads |CatPkg=x11-drivers/xf86-input-synaptics |Homepage=http://cgit.freedesktop.org/xorg/driver/xf86-input-synaptics/ }} Synaptics...")
 
m (more sensitive)
 
(8 intermediate revisions by the same user not shown)
Line 4: Line 4:
|Homepage=http://cgit.freedesktop.org/xorg/driver/xf86-input-synaptics/
|Homepage=http://cgit.freedesktop.org/xorg/driver/xf86-input-synaptics/
}}
}}
Synaptics is the drive for laptop touchpad mice.
Synaptics is the driver for laptop touchpad mice.


{{File|name=/etc/portage/[[make.conf]]|lang=|body=
{{File|name=/etc/portage/[[make.conf]]|lang=|body=
INPUT_DEVICES="synaptics evdev"}}
INPUT_DEVICES="synaptics evdev"}}


Your system should have a {{f|/etc/X11/xorg.conf.d}} directory on your system.  
Your system should have a {{f|/etc/X11/xorg.conf.d}} directory.  
If there isn't one create it:
If there isn't one create it:
{{console|body=
{{console|body=
Line 21: Line 21:
         MatchIsTouchpad "on"
         MatchIsTouchpad "on"
         Option "VertEdgeScroll" "on"
         Option "VertEdgeScroll" "on"
         Option      "CircularScrolling"        "on"
         Option      "CircularScrolling"        "off"
         Option      "VertScrollDelta"          "-111"
         Option      "VertScrollDelta"          "-111"
         Option      "HorizScrollDelta"        "-111"
         Option      "HorizScrollDelta"        "-111"
         Option      "TapButton1"                "1"
         Option      "TapButton1"                "1"
EndSection
}}
====TrackPad Size====
{{File|name=/etc/X11/xorg.conf.d/50-synaptics.conf|lang=|body=
Option "RightEdge" "5800"
Option "LeftEdge" "1300"
Option "TopEdge" "1100"
Option "BottomEdge" "5000"
}}
====Invert Scroll====
{{File|name=/etc/X11/xorg.conf.d/50-synaptics.conf|lang=|body=
Section "InputClass"
...
        Option      "VertScrollDelta"          "111"
...
EndSection
}}
====Circular Scroll====
Entire trackpad outline is a scroll wheel:
{{File|name=/etc/X11/xorg.conf.d/50-synaptics.conf|lang=|body=
Section "InputClass"
...
        Option "CircularScrolling" "on"
        Option "CircScrollTrigger" "0"
...
EndSection
EndSection
}}
}}

Latest revision as of 01:05, May 24, 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

TrackPad Size

   /etc/X11/xorg.conf.d/50-synaptics.conf
Option "RightEdge" "5800"
Option "LeftEdge" "1300"
Option "TopEdge" "1100"
Option "BottomEdge" "5000"

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" "0"
...
EndSection