How to enable Natural Scrolling on your recently installed Linux
Whell this is simple, and anoying, well I use to work in Mac and I love the natural scrolling because it feels Natural, right, so, when I install my new Linux, I always get bothered with this issue, and I end to delay the simple fix, until I decide google it and after a couple of minutes I say, well this is pretty simple, so here is the solution, just create a file with, your favorite editor, in my case nvim
sudo nvim /etc/X11/xorg.conf.d/30-touchpad.conf
file content:
Section "InputClass"
Identifier "devname"
Driver "libinput"
Option "NaturalScrolling" "on"
EndSection
and is all, you just need to reboot, and done!
Comments ()