summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKyle K <kylek389@gmail.com>2017-05-24 19:18:00 -0500
committerKyle K <kylek389@gmail.com>2017-05-24 19:18:00 -0500
commita317e2c9c6384ed4b7717926fd5ded475e8ce46b (patch)
treea60be1e7f7ecd69278a96d0dba684183d8f5e3a7
parent1fc52327bbf01c83b693a69c5e81e21cef666ab9 (diff)
downloadconfigs-a317e2c9c6384ed4b7717926fd5ded475e8ce46b.tar.gz
configs-a317e2c9c6384ed4b7717926fd5ded475e8ce46b.tar.bz2
configs-a317e2c9c6384ed4b7717926fd5ded475e8ce46b.zip
synaptic comfy touchpad settings
-rw-r--r--ion/usr/share/X11/xorg.conf.d/71-synaptics.conf28
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