Skip to content

Instantly share code, notes, and snippets.

@friday
Created January 4, 2020 04:27
Show Gist options
  • Select an option

  • Save friday/8def8aefdac21280aa93f4cd05cf58b2 to your computer and use it in GitHub Desktop.

Select an option

Save friday/8def8aefdac21280aa93f4cd05cf58b2 to your computer and use it in GitHub Desktop.
Synaptics conf for Mac-like touchpad
Section "InputClass"
Identifier "touchpad catchall"
Driver "synaptics"
MatchIsTouchpad "on"
Option "TapButton1" "1" # Left click on tap
Option "TapButton2" "3" # Right click on two finger tap
Option "MinSpeed" "1"
Option "MaxSpeed" "1.8"
Option "AccelFactor" "0.06"
Option "PressureMotionMaxFactor" "3"
Option "HorizHysteresis" "5" # High values avoids moving pointer when clicking. Small values allow finer control
Option "VertHysteresis" "5"
EndSection
@friday
Copy link
Author

friday commented Jan 4, 2020

Example command to apply conf (requires restarting X): curl -o /etc/X11/xorg.conf.d/50-synaptics.conf https://gist.githubusercontent.com/friday/8def8aefdac21280aa93f4cd05cf58b2/raw

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment