Last active
December 20, 2015 09:09
-
-
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.
This file contains hidden or 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" | |
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