2011-04-10 06:04:29 -06:00
|
|
|
# Example xorg.conf.d snippet that assigns the touchpad driver
|
|
|
|
# to all touchpads. See xorg.conf.d(5) for more information on
|
|
|
|
# InputClass.
|
|
|
|
# DO NOT EDIT THIS FILE, your distribution will likely overwrite
|
|
|
|
# it when updating. Copy (and rename) this file into
|
|
|
|
# /etc/X11/xorg.conf.d first.
|
|
|
|
# Additional options may be added in the form of
|
|
|
|
# Option "OptionName" "value"
|
|
|
|
#
|
2011-04-09 02:38:27 -06:00
|
|
|
Section "InputClass"
|
|
|
|
Identifier "touchpad catchall"
|
|
|
|
Driver "synaptics"
|
|
|
|
MatchIsTouchpad "on"
|
2011-04-10 06:04:29 -06:00
|
|
|
# This option is recommend on all Linux systems using evdev, but cannot be
|
|
|
|
# enabled by default. See the following link for details:
|
|
|
|
# http://who-t.blogspot.com/2010/11/how-to-ignore-configuration-errors.html
|
|
|
|
# MatchDevicePath "/dev/input/event*"
|
2011-04-09 02:38:27 -06:00
|
|
|
EndSection
|
2011-09-23 10:53:49 -06:00
|
|
|
|
|
|
|
Section "InputClass"
|
|
|
|
Identifier "touchpad ignore duplicates"
|
|
|
|
MatchIsTouchpad "on"
|
|
|
|
MatchOS "Linux"
|
|
|
|
MatchDevicePath "/dev/input/mouse*"
|
|
|
|
Option "Ignore" "on"
|
|
|
|
EndSection
|
2012-06-12 12:59:42 -06:00
|
|
|
|
2014-05-17 11:18:21 -06:00
|
|
|
# This option enables the bottom right corner to be a right button on clickpads
|
|
|
|
# and the right and middle top areas to be right / middle buttons on clickpads
|
|
|
|
# with a top button area.
|
2012-06-12 12:59:42 -06:00
|
|
|
# This option is only interpreted by clickpads.
|
|
|
|
Section "InputClass"
|
|
|
|
Identifier "Default clickpad buttons"
|
|
|
|
MatchDriver "synaptics"
|
|
|
|
Option "SoftButtonAreas" "50% 0 82% 0 0 0 0 0"
|
2015-01-24 10:43:59 -07:00
|
|
|
Option "SecondarySoftButtonAreas" "58% 0 0 15% 42% 58% 0 15%"
|
2012-06-12 12:59:42 -06:00
|
|
|
EndSection
|
|
|
|
|
|
|
|
# This option disables software buttons on Apple touchpads.
|
|
|
|
# This option is only interpreted by clickpads.
|
|
|
|
Section "InputClass"
|
|
|
|
Identifier "Disable clickpad buttons on Apple touchpads"
|
|
|
|
MatchProduct "Apple|bcm5974"
|
|
|
|
MatchDriver "synaptics"
|
|
|
|
Option "SoftButtonAreas" "0 0 0 0 0 0 0 0"
|
|
|
|
EndSection
|