Skip to content

Instantly share code, notes, and snippets.

@orschiro
Created April 9, 2015 08:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save orschiro/3c9acf6c2b03f1a71eca to your computer and use it in GitHub Desktop.
Save orschiro/3c9acf6c2b03f1a71eca to your computer and use it in GitHub Desktop.
X230 Touchpad Configuration
# Add the below configuration to /etc/X11/xorg.conf.d/50-touchpad.conf
Section "InputClass"
Identifier "touchpad"
MatchProduct "SynPS/2 Synaptics TouchPad"
# MatchTag "lenovo_x230_all"
Driver "synaptics"
# fix touchpad resolution
Option "VertResolution" "100"
Option "HorizResolution" "65"
# disable synaptics driver pointer acceleration
Option "MinSpeed" "1"
Option "MaxSpeed" "1"
# tweak the X-server pointer acceleration
Option "AccelerationProfile" "2"
Option "AdaptiveDeceleration" "16"
Option "ConstantDeceleration" "16"
Option "VelocityScale" "20"
Option "AccelerationNumerator" "30"
Option "AccelerationDenominator" "10"
Option "AccelerationThreshold" "10"
# Disable two fingers right mouse click
Option "TapButton2" "0"
# increment noise cancellation factor
Option "HorizHysteresis" "150"
Option "VertHysteresis" "150"
EndSection
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment