summaryrefslogtreecommitdiffstats
path: root/ion/usr/share/X11/xorg.conf.d/71-synaptics.conf
blob: 29b8e8e2c86777d2327d38e8c135a9fff8f5f754 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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