Edit 40-libinput.conf
/usr/share/X11/xorg.conf.d/40-libinput.conf
Add there Option
"NaturalScrolling" "True"
Example
For mouse:
# Match on all types of devices but joysticks
Section "InputClass"
        Identifier "libinput pointer catchall"
        MatchIsPointer "on"
        MatchDevicePath "/dev/input/event*"
        Driver "libinput"
        Option "NaturalScrolling" "True"
EndSection
For touchpad:
Section "InputClass"
        Identifier "libinput touchpad catchall"
        MatchIsTouchpad "on"
        MatchDevicePath "/dev/input/event*"
        Driver "libinput"
        Option "NaturalScrolling" "True"
EndSection
Then log off and on to apply.
 

 
    
Top comments (0)