24 lines
731 B
Plaintext
Executable File
24 lines
731 B
Plaintext
Executable File
cat <<EOT >> /usr/share/X11/xorg.conf.d/50-synaptics.conf
|
|
Section "InputClass"
|
|
Identifier "touchpad"
|
|
Driver "synaptics"
|
|
MatchIsTouchpad "on"
|
|
Option "TapButton1" "1"
|
|
Option "TapButton2" "2"
|
|
Option "TapButton3" "3"
|
|
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"
|
|
Option "FingerLow" "30"
|
|
Option "FingerHigh" "50"
|
|
Option "MaxTapTime" "125"
|
|
|
|
EndSection
|
|
EOT
|