0

The topic here shows how to successfully change the speed of the pointer. For example, in my case the solution has been xinput set-prop 13 276 0.7. However, the configuration is lost with the restart of the pc. How to make this change permanent?

Max Cohen
  • 233
  • 1
  • 3
  • 11

1 Answers1

1

The easiest way would be adding the command to Startup application, first we'll wrap the command with bash script.

touch speedmouse.sh

Then, append your command:

echo "xinput set-prop 13 276 0.7" >> speedmouse.sh

Press Alt + F2, type gnome-session-properties to launch startup application. Press Add to create new startup:

enter image description here

enter image description here

You should all set now.

Liso
  • 15,677