Skip to content

Instantly share code, notes, and snippets.

@cloudnull
Last active December 20, 2015 09:09
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 cloudnull/6105679 to your computer and use it in GitHub Desktop.
Save cloudnull/6105679 to your computer and use it in GitHub Desktop.
Using the "xf86-input-mtrack" driver as found here : https://github.com/BlueDragonX/xf86-input-mtrack/tree/dev : this is the config I have found to be the most useful. I drop the config here "/usr/share/X11/xorg.conf.d/" and name the file "50-mtrack.conf". This is my working config when running on a Macbook Pro 8,2 with Ubuntu.
Section "InputClass"
MatchIsTouchpad "on"
Identifier "Touchpads"
Driver "mtrack"
Option "Sensitivity" ".65"
Option "FingerHigh" "10"
Option "FingerLow" "5"
Option "IgnoreThumb" "true"
Option "IgnorePalm" "true"
Option "TapButton1" "0"
Option "TapButton2" "0"
Option "TapButton3" "0"
Option "TapButton4" "0"
Option "ClickFinger1" "3"
Option "ClickFinger2" "2"
Option "ClickFinger3" "0"
Option "ClickTime" "50"
Option "SwipeUpButton" "0"
Option "SwipeDownButton" "0"
Option "Swipe4UpButton" "0"
Option "Swipe4DownButton" "0"
Option "ScrollDistance" "100"
Option "ButtonMoveEmulate" "false"
Option "ButtonIntegrated" "true"
EndSection
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment