2

I installed Ubuntu 18.04 to the Dell xps 13(9370) with a mouse Logicool M590.

The mouse can be connected successfully, but pointer speed is not fast enough for me.

I tried Mouse & Touchpad section of system config application and xinput --set-float-prop pointer:M585/M590 "libinput Accel Speed" 1 command, but I got same result from both setting.

Are there any other way to change mouse speed?

Thanks,

This page expalins how to use xinput command, but I need other method to make mouse pointer moves faster.

xset command mentioned in the page doesn't work. I guess xset command doesn't work with libinput.

2 Answers2

1

For me it made the sensitivity and acceleration just like it was in 16.04 (16.04 to 18.04 update slowed the mouse way too much).

put

xinput --set-prop 'ImPS/2 Generic Wheel Mouse' 'Device Accel Profile' 2

into

~/.xsessionrc

To get the name of the mouse:

xinput --list --short

Derived from in this answer: https://askubuntu.com/a/876273/391744

but changed instead just the acceleration profile from 0 to 2:

  1. Run in terminal xinput --list --short and find your mouse id (for me id=12)

  2. Run in terminal xinput --list-props 12 (change 12 for the right id)

  3. Find the id for the property Device Accel Profile (for me 267)

  4. Run in terminal xinput --set-prop 12 267 2 (change 12 and 267 for the correct id)

Velkan
  • 3,616
  • 1
    Thank you. But it looks my device doesn't have Device Accel Profile

    $ xinput --set-prop 20 'Device Accel Profile' 2 property 'Device Accel Profile' doesn't exist, you need to specify its type and format

    –  Jul 01 '18 at 11:43
0

When you do

xinput --list --short

There are two type of input devices: pointers and keyboards.

For some reason, the M585/M590 is located in both types and these are different devices.

You need to change the pointer device settings, to list all the settings for the pointer use this command.

xinput --list-props "M585/M590 Mouse"

You will find there this setting "libinput Accel Speed".

Change it like that:

xinput --set-prop "M585/M590 Mouse" "libinput Accel Speed" 0.8

You can check wheather the options were changed correctly by doing xinput --list-props "M585/M590 Mouse" again.

Eugene
  • 1