master
Raw Download raw file
 1# Example xorg.conf.d snippet that assigns the touchpad driver
 2# to all touchpads. See xorg.conf.d(5) for more information on
 3# InputClass.
 4# DO NOT EDIT THIS FILE, your distribution will likely overwrite
 5# it when updating. Copy (and rename) this file into
 6# /etc/X11/xorg.conf.d first.
 7# Additional options may be added in the form of
 8#   Option "OptionName" "value"
 9#
10Section "InputClass"
11        Identifier "touchpad catchall"
12        Driver "synaptics"
13        MatchIsTouchpad "on"
14        Option "HorizTwoFingerScroll" "on"
15		    Option "VertScrollDelta" "-111"
16		    Option "HorizScrollDelta" "-111"
17		    Option "VertEdgeScroll" "off"
18        Option "AreaRightEdge" "2700"
19# This option is recommend on all Linux systems using evdev, but cannot be
20# enabled by default. See the following link for details:
21# http://who-t.blogspot.com/2010/11/how-to-ignore-configuration-errors.html
22      MatchDevicePath "/dev/input/event*"
23EndSection
24
25Section "InputClass"
26        Identifier "touchpad wolf cyapa"
27        MatchIsTouchpad "on"
28        MatchDevicePath "/dev/input/event*"
29        MatchProduct "cyapa"
30        Option "FingerLow" "5"
31        Option "FingerHigh" "10"
32EndSection
33
34Section "InputClass"
35        Identifier "touchpad ignore duplicates"
36        MatchIsTouchpad "on"
37        MatchOS "Linux"
38        MatchDevicePath "/dev/input/mouse*"
39        Option "Ignore" "on"
40EndSection
41
42# This option enables the bottom right corner to be a right button on clickpads
43# and the right and middle top areas to be right / middle buttons on clickpads
44# with a top button area.
45# This option is only interpreted by clickpads.
46#Section "InputClass"
47#        Identifier "Default clickpad buttons"
48#        MatchDriver "synaptics"
49#        Option "SoftButtonAreas" "50% 0 82% 0 0 0 0 0"
50#        Option "SecondarySoftButtonAreas" "58% 0 0 15% 42% 58% 0 15%"
51#EndSection
52
53# This option disables software buttons on Apple touchpads.
54# This option is only interpreted by clickpads.
55Section "InputClass"
56        Identifier "Disable clickpad buttons on Apple touchpads"
57        MatchProduct "Apple|bcm5974"
58        MatchDriver "synaptics"
59        Option "SoftButtonAreas" "0 0 0 0 0 0 0 0"
60EndSection