Skip to content

Latest commit

 

History

History
13 lines (12 loc) · 365 Bytes

enable_button.md

File metadata and controls

13 lines (12 loc) · 365 Bytes

First remove xserver-xorg-input-synaptics and install xserver-xorg-input-libinput

After, add the following lines to /usr/share/X11/xorg.conf.d/40-libinput.conf

Section  "InputClass"
    Identifier  "touchpad overrides"
    Driver "libinput"
    MatchIsTouchpad "on"
    Option "Tapping" "on"
    Option "TappingButtonMap" "lrm"
EndSection

And reboot now.-