Skip to content

Instantly share code, notes, and snippets.

@jumski
Forked from soleblaze/gist:975bc2b0e5e69137fd08
Created November 30, 2015 17:38
Show Gist options
  • Save jumski/0c90e26c24c5f735e1cc to your computer and use it in GitHub Desktop.
Save jumski/0c90e26c24c5f735e1cc to your computer and use it in GitHub Desktop.
/etc/X11/xorg.conf.d/50-synaptics.conf
Section "InputClass"
Identifier "touchpad"
Driver "synaptics"
MatchIsTouchpad "on"
# Enables Palm Detection to prevent bad clicks
# This seems to work on PS/2, but not on i2c
Option "PalmDetect" "1"
Option "PalmMinWidth" "8"
Option "PalmMinZ" "100"
# Enable clickpad support
Option "ClickPad" "true"
# Sets up soft buttons at the bottom
# First 40% - Left Button
# Middle 20% - Middle Button
# Right 40% - Right Button
Option "SoftButtonAreas" "60% 0 82% 0 40% 59% 82% 0"
# Disables Tap to click
Option "MaxTapTime" "0"
# Enable two finger scrolling
Option "VertTwoFingerScroll" "on"
Option "HorizTwoFingerScroll" "on"
EndSection
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment