-
-
Save jumski/0c90e26c24c5f735e1cc to your computer and use it in GitHub Desktop.
/etc/X11/xorg.conf.d/50-synaptics.conf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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