Manjaro mouse reset problem

Hello there! I solved the Manjaro mouse reset issue. I use the mouse in flat mode instead of adaptive mode. Because adaptve mode is very annoying. But when I reconnect and connect my mouse it goes into adaptive mode or this problem happens when the computer goes to sleep and then open. So very disturbing. How did I solve this problem? It’s very very simple.

Open terminal and type this command

sudo nano /etc/X11/xorg.conf.d/50-mouse-acceleration.conf

It opens nano editor.

Now paste this text in nano editor👇

Section "InputClass"
	Identifier "My Mouse"
	Driver "libinput"
	MatchIsPointer "yes"
	Option "AccelProfile" "flat"
	Option "AccelSpeed" "0"
EndSection

Now hit Ctrl+O to save it hit enter and Ctrl+X to exit nano editor. Reset pc and thats done.
This method worked for me. Check if it works for you.

Hi @Sonmez_Reis, and welcome!

Thank you for sharing.

Please edit your post according to the

Thank you!


Tip:

When posting terminal output, copy the output and paste it here, wrapped in three (3) backticks, before AND after the pasted text. Like this:

```
pasted text
```

This will just cause it to be rendered like this:

Sed
sollicitudin dolor
eget nisl elit id
condimentum
arcu erat varius
cursus sem quis eros.

Instead of like this:

Sed sollicitudin dolor eget nisl elit id condimentum arcu erat varius cursus sem quis eros.

Alternatively, paste the text you wish to format as terminal output, select all pasted text, and click the </> button on the taskbar. This will indent the whole pasted section with one TAB, causing it to render the same way as described above.

Edit:

I see you use Plasma. In Plasma 5.24 I can it can be set as follows:

  1. Open LauncherSystem Settings.
  2. Go to HardwareInput DevicesMouse.
  3. There you can select either Flat or Adaptive Acceleration Profile.
  4. Click Apply, bottom right, when done and exit System Settings.

Imgur

1 Like