Last active
October 21, 2018 14:19
-
-
Save rac021/c817ec2184c10b9e01ccf91101581cf9 to your computer and use it in GitHub Desktop.
I3_touchpad_single_tap_and_double_tap
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# /etc/X11/xorg.conf.d/30-touchpad.conf | |
Section "InputClass" | |
Identifier "touchpad" | |
Driver "libinput" | |
MatchIsTouchpad "on" | |
Option "tapping" "on" | |
Option "AccelProfile" "adaptive" | |
# Option "TappingButtonMap" "lrm" | |
# Option "VertScrollDelta" "-111" | |
# Option "HorizScrollDelta" "-111" | |
Option "VertTwoFingerScroll" "1" # multitouch | |
Option "HorizTwoFingerScroll" "1" # multitouch | |
EndSection | |
# Other option | |
# xinput list | |
# xinput list-props 12 | |
# ex : xinput set-prop 12 324 1 1 1 1 1 1 1 | |
# synclient TapButton2=3 # two finger tap for right click |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment