diff options
-rw-r--r-- | ion/usr/share/X11/xorg.conf.d/71-synaptics.conf | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/ion/usr/share/X11/xorg.conf.d/71-synaptics.conf b/ion/usr/share/X11/xorg.conf.d/71-synaptics.conf new file mode 100644 index 0000000..29b8e8e --- /dev/null +++ b/ion/usr/share/X11/xorg.conf.d/71-synaptics.conf @@ -0,0 +1,28 @@ +Section "InputClass" + Identifier "touchpad" + Driver "synaptics" + MatchIsTouchpad "on" + Option "TapButton1" "1" + Option "TapButton2" "3" # 2-finger tap results in right-click menu + Option "TapButton3" "2" # button1=left-click, button2=scroll, button3=right-click + Option "VertEdgeScroll" "on" + Option "VertTwoFingerScroll" "on" + Option "HorizEdgeScroll" "on" + Option "HorizTwoFingerScroll" "on" + Option "CircularScrolling" "on" + Option "CircScrollTrigger" "2" + Option "EmulateTwoFingerMinZ" "40" + Option "EmulateTwoFingerMinW" "8" + Option "CoastingSpeed" "0" # default was 20 + Option "FingerLow" "30" + Option "FingerHigh" "50" + Option "MaxTapTime" "125" + # helps to cancel noise when trying to double-tap to select a line of text, the cursor moves/jumps less... + Option "HorizHysteresis" "40" + Option "VertHysteresis" "40" + # disable touchpad while typing + Option "PalmDetect" "1" + # my speed + Option "AccelFactor" "0.025" + Option "VertScrollDelta" "150" # default was 114, vertical scroll was too fast for me +EndSection |