Page 1 of 1

[Solved] Natural scrolling?

Posted: Wed Mar 13, 2013 10:29 am
by Q-collective
Hey all,

How do I enable natural scrolling in Cinnamon? I tried this howto, but that didn't work as there is not package called "naturalscrolling" in that ppa. So I thought to open up this thread.

Re: Natural scrolling?

Posted: Wed Mar 13, 2013 11:42 am
by xenopeek
Which release of Linux Mint are you on? The package details of the PPA are here: https://launchpad.net/~zedtux/+archive/ ... /+packages. As you can see, Linux Mint 14--with Ubuntu Quantal as package base--doesn't yet have a stable package. You could install naturalscrolling-testing instead, or at least I guess that is the unstable version.

Re: Natural scrolling?

Posted: Wed Mar 13, 2013 12:32 pm
by Q-collective
xenopeek wrote:Which release of Linux Mint are you on?
14.1
The package details of the PPA are here: https://launchpad.net/~zedtux/+archive/ ... /+packages. As you can see, Linux Mint 14--with Ubuntu Quantal as package base--doesn't yet have a stable package. You could install naturalscrolling-testing instead, or at least I guess that is the unstable version.
Thank you, that did the trick of installing it :)

But how do I enable it now? I kinda expected that the mouse settings would have an option now to enable natural scrolling.

Re: Natural scrolling?

Posted: Wed Mar 13, 2013 12:39 pm
by xenopeek
It should be in your Accessories category of the menu, as "Natural Scrolling". Or you can just do Alt+F2 and type naturalscrolling, followed by enter to start it. From the screenshots in the article, you need to start it and it should be an icon on your panel. From there you can set it to automatically start in the future.

Re: Natural scrolling?

Posted: Wed Mar 13, 2013 12:58 pm
by Q-collective
xenopeek wrote:It should be in your Accessories category of the menu, as "Natural Scrolling". Or you can just do Alt+F2 and type naturalscrolling, followed by enter to start it. From the screenshots in the article, you need to start it and it should be an icon on your panel. From there you can set it to automatically start in the future.
Thanks, that did it :)

Why is it not just an option though in the mouse settings? I'm coming from KDE (Gentoo) and there it's a simple switch.

Re: [Solved] Natural scrolling?

Posted: Wed Mar 13, 2013 1:30 pm
by xenopeek
IDK; didn't write the program. You're the one that found it :wink:

Re: [Solved] Natural scrolling?

Posted: Wed Mar 13, 2013 1:31 pm
by Q-collective
xenopeek wrote:IDK; didn't write the program. You're the one that found it :wink:
No, I'm not talking about the third party program, but about the mouse settings that come by default with Cinnamon ;)

Re: [Solved] Natural scrolling?

Posted: Wed Mar 13, 2013 3:09 pm
by xenopeek
Perhaps an idea to submit to the developers :) Ideas for Cinnamon go on GitHub: https://github.com/linuxmint/Cinnamon/issues.

KDE is of course the ultimate for tweaks like that. Cinnamon is maturing rapidly, though still using parts from GNOME--like the mouse settings (and the GNOME project has past releases been more fond of removing functionality than to keep it).

SOLVED? NO!

Posted: Mon Mar 25, 2013 3:24 am
by KremiX
in nemo natural scrolling is NOT working (program) . Secondly: what if I am on Archlinux and using Cinnamon and nemo? Please just add an option to enable natural scrolling in cinnamon control center.

Re: SOLVED? NO!

Posted: Fri Apr 05, 2013 3:45 pm
by Q-collective
KremiX wrote:in nemo natural scrolling is NOT working (program) . Secondly: what if I am on Archlinux and using Cinnamon and nemo? Please just add an option to enable natural scrolling in cinnamon control center.
This is correct. Cinnamon seems to have his own scrolling settings that overrule naturalscrolling... I agree it should just be an option in the Cinnamon settings.

Re: [Solved] Natural scrolling?

Posted: Sat Jul 27, 2013 3:59 pm
by bronson
I enabled natural scrolling by creating a new entry in Startup Programs ince I'd hate to have a useless icon in the panel all the time. (used [url]http://agoraphobiae.wordpress.com/2013/02/05/inverted-scrolling-and-two-finger-scrolling-in-linux-mint-14/[/url]) to figure out the command, then created a new entry with Command: xinput set-button-map 9 1 2 3 5 4 7 6).

It mostly works perfect. Unfortunately, yes, some Mint applications don't get it. The System Settings window scrolls correctly, the Background Settings window scrolls incorrectly. Software Manager scrolls correctly, Nemo scrolls incorrectly. It's weird!

Since I use a trackpad, natural scrolling really feels right. I'm really looking forward to when Mint adds proper support for this.

Re: [Solved] Natural scrolling?

Posted: Fri Jan 25, 2019 1:03 pm
by J_stin
This worked for me and I prefer making a simple edit to a file rather than installing something.
https://askubuntu.com/a/929178/638128

In the file

Code: Select all

/usr/share/X11/xorg.conf.d/40-libinput.conf
in the section that has

Code: Select all

Identifier "libinput pointer catchall"
make sure you have this line:

Code: Select all

Option "NaturalScrolling" "on"
So the whole section looks something like

Code: Select all

  Section "InputClass"
          Identifier "libinput pointer catchall"
          MatchIsPointer "on"
          MatchDevicePath "/dev/input/event*"
          Option "NaturalScrolling" "on"
          Driver "libinput"
  EndSection