Saturday, 10 February 2018

Touchpad config fedora 27 - libinput

Natural scrolling (mac-like) and touchpad tap enabled.
sudo vim /etc/X11/xorg.conf.d/30-touchpad.conf
Content of the file:
Section "InputClass"
    Identifier "touchpad"
    Driver "libinput"
    MatchIsTouchpad "on"
    Option "Tapping" "on"
    Option "TappingButtonMap" "lmr"
    Option "NaturalScrolling" "true"
EndSection
Logout, login, done.