04-04-2015, 09:15 AM
Heh, its turn out that most of stuff I wanted to do(sensitivity, scrolling, click behavior etc) I could make just by editing synclient -l commands, and to be more precise putting them in file with something like that:
Now I play with other settings so I could even assign shortcuts on every corner, but most important, finally I can fix sensitivity on vertical and horizontal scroll, and fix palm detection. And oh my god, finally 3-finger click behave like middle click not as a "menu".
Its way easier that Touchegg, becuase, not only touchegg doesnt work for me, but also as I saw on videos it doesnt have options that I wanted.
So for anyone who is interested in making their touchpad better check those sites:
http://www.x.org/archive/X11R7.5/doc/man...ics.4.html
https://wiki.archlinux.org/index.php/Touchpad_Synaptics
And small PS. I wasn't sure where to put my configuration file, so I put it in /usr/share/X11/xorg.conf.d/ and I named it "60-synaptics.conf" to override other settings that I have. its is good place and name?
Or its other way to load those settings to enable it after I login?
Code:
Section "InputClass"
Identifier "touchpad"
Driver "synaptics"
MatchIsTouchpad "on"
MatchDevicePath "/dev/input/event*"
Option "FingerHigh" "30"
Option "TapButton1" "1"
Option "TapButton2" "2"
Option "TapButton3" "3"
Option "RTCornerButton" "0"
Option "RBCornerButton" "0"
Option "LTCornerButton" "0"
Option "LBCornerButton" "0"
Option "MinSpeed" "0.8"
Option "MaxSpeed" "1.6"
Option "FingerLow" "35"
Option "CircularScrolling" "on"
Option "CircScrollTrigger" "3"
Option "EmulateTwoFingerMinZ" "40"
Option "EmulateTwoFingerMinW" "8"
Option "SHMConfig" "on"
Option "PalmDetect" "on"
Option "ClickFinger2" "2"
Option "ClickFinger3" "3"
EndSection
Now I play with other settings so I could even assign shortcuts on every corner, but most important, finally I can fix sensitivity on vertical and horizontal scroll, and fix palm detection. And oh my god, finally 3-finger click behave like middle click not as a "menu".
Its way easier that Touchegg, becuase, not only touchegg doesnt work for me, but also as I saw on videos it doesnt have options that I wanted.
So for anyone who is interested in making their touchpad better check those sites:
http://www.x.org/archive/X11R7.5/doc/man...ics.4.html
https://wiki.archlinux.org/index.php/Touchpad_Synaptics
And small PS. I wasn't sure where to put my configuration file, so I put it in /usr/share/X11/xorg.conf.d/ and I named it "60-synaptics.conf" to override other settings that I have. its is good place and name?
Or its other way to load those settings to enable it after I login?