You are not logged in.

#1 2024-02-27 09:44:56

thommen
Member
From: Poland
Registered: 2017-12-30
Posts: 238

[SOLVED] How to change mouse speed/sensitivity?

I have

xinput --list-props 8        
Device 'Razer Razer Basilisk X HyperSpeed':
	Device Enabled (154):	1
	Coordinate Transformation Matrix (156):	1.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 1.000000
	libinput Natural Scrolling Enabled (282):	0
	libinput Natural Scrolling Enabled Default (283):	0
	libinput Scroll Methods Available (284):	0, 0, 1
	libinput Scroll Method Enabled (285):	0, 0, 0
	libinput Scroll Method Enabled Default (286):	0, 0, 0
	libinput Button Scrolling Button (287):	2
	libinput Button Scrolling Button Default (288):	2
	libinput Button Scrolling Button Lock Enabled (289):	0
	libinput Button Scrolling Button Lock Enabled Default (290):	0
	libinput Middle Emulation Enabled (291):	0
	libinput Middle Emulation Enabled Default (292):	0
	libinput Rotation Angle (265):	0.000000
	libinput Rotation Angle Default (266):	0.000000
	libinput Accel Speed (293):	0.000000
	libinput Accel Speed Default (294):	0.000000
	libinput Accel Profiles Available (295):	1, 1, 1
	libinput Accel Profile Enabled (296):	0, 1, 0
	libinput Accel Profile Enabled Default (297):	1, 0, 0
	libinput Accel Custom Fallback Points (298):	<no items>
	libinput Accel Custom Fallback Step (299):	0.000000
	libinput Accel Custom Motion Points (300):	<no items>
	libinput Accel Custom Motion Step (301):	0.000000
	libinput Accel Custom Scroll Points (302):	<no items>
	libinput Accel Custom Scroll Step (303):	0.000000
	libinput Left Handed Enabled (304):	0
	libinput Left Handed Enabled Default (305):	0
	libinput Send Events Modes Available (267):	1, 0
	libinput Send Events Mode Enabled (268):	0, 0
	libinput Send Events Mode Enabled Default (269):	0, 0
	Device Node (270):	"/dev/input/event2"
	Device Product ID (271):	5426, 131
	libinput Drag Lock Buttons (306):	<no items>
	libinput Horizontal Scroll Enabled (307):	1
	libinput Scrolling Pixel Distance (308):	15
	libinput Scrolling Pixel Distance Default (309):	15
	libinput High Resolution Wheel Scroll Enabled (310):	1

I change the speed with

xinput --set-prop 8 293 -0.6 

And where does one change the sensitivity of the mouse?

Last edited by thommen (2024-02-27 16:14:17)

Offline

#2 2024-02-27 10:41:11

V1del
Forum Moderator
Registered: 2012-10-16
Posts: 23,262

Re: [SOLVED] How to change mouse speed/sensitivity?

For mice like these normally on the mouse itself, or you play around with the accel profiles.

If you want an interface to be able to configure the lower level firmware stuff look into openrazer: https://wiki.archlinux.org/title/Razer_ … #OpenRazer

Offline

#3 2024-02-27 11:22:03

thommen
Member
From: Poland
Registered: 2017-12-30
Posts: 238

Re: [SOLVED] How to change mouse speed/sensitivity?

I checked the two overlays "polychromatic" and "razergenie", but I do not see any way to change the sensitivity of the mouse.

I am left to play with profiles. How do I play with the accel profile?

Offline

#4 2024-02-27 12:58:18

seth
Member
Registered: 2012-09-03
Posts: 58,809

Re: [SOLVED] How to change mouse speed/sensitivity?

And where does one change the sensitivity of the mouse?

Is not the same as

How do I play with the accel profile?

Try

xset m 25/10 6

According to google your mouse has a DPI button on the top, that doesn't work?

Offline

#5 2024-02-27 13:19:39

thommen
Member
From: Poland
Registered: 2017-12-30
Posts: 238

Re: [SOLVED] How to change mouse speed/sensitivity?

seth wrote:

Try

xset m 25/10 6

No change at my place

seth wrote:

According to google your mouse has a DPI button on the top, that doesn't work?

The button works. Of course, I switch to the next DPI. What I care about is that when moving slowly, the cursor moves slowly and thus is more accurate. When moving fast, you know, the acceleration works. This is how I had in the previous mouse "Accura Butano ACC-M1057".

Offline

#6 2024-02-27 13:25:10

seth
Member
Registered: 2012-09-03
Posts: 58,809

Re: [SOLVED] How to change mouse speed/sensitivity?

1. you're running an X11 session to begin with?
2. "xset -q | grep acc"
3. try xf86-input-evdev …

"xset m 25/10 6" will get you a 2.5 acceleration factor on a 6px dead zone

Offline

#7 2024-02-27 13:26:42

V1del
Forum Moderator
Registered: 2012-10-16
Posts: 23,262

Re: [SOLVED] How to change mouse speed/sensitivity?

That you do with libinput configuration indeed. If the default behaviour from using the "adaptive" acceleration profile is insufficient you can test the custom profile where you can give exact numbers for when acceleration happens: https://man.archlinux.org/man/libinput. … ON_PROFILE

Offline

#8 2024-02-27 14:13:25

thommen
Member
From: Poland
Registered: 2017-12-30
Posts: 238

Re: [SOLVED] How to change mouse speed/sensitivity?

seth wrote:

1. you're running an X11 session to begin with?
2. "xset -q | grep acc"
3. try xf86-input-evdev …

"xset m 25/10 6" will get you a 2.5 acceleration factor on a 6px dead zone

1. Yes
2.

xset -q | grep acc
  acceleration:  25/10    threshold:  6

Offline

#9 2024-02-27 14:15:39

seth
Member
Registered: 2012-09-03
Posts: 58,809

Re: [SOLVED] How to change mouse speed/sensitivity?

is there a difference w/ "xset m 10/10 6"?

Offline

#10 2024-02-27 14:28:36

thommen
Member
From: Poland
Registered: 2017-12-30
Posts: 238

Re: [SOLVED] How to change mouse speed/sensitivity?

seth wrote:

is there a difference w/ "xset m 10/10 6"?

No change

Offline

#11 2024-02-27 14:55:54

seth
Member
Registered: 2012-09-03
Posts: 58,809

Re: [SOLVED] How to change mouse speed/sensitivity?

Offline

#12 2024-02-27 15:20:41

thommen
Member
From: Poland
Registered: 2017-12-30
Posts: 238

Re: [SOLVED] How to change mouse speed/sensitivity?

Now I have

	libinput Accel Profile Enabled (296):	1, 0, 0

Offline

#13 2024-02-27 15:32:14

seth
Member
Registered: 2012-09-03
Posts: 58,809

Re: [SOLVED] How to change mouse speed/sensitivity?

"and does this change anything"?

We're not playing a game of twenty questions here, pelase be more forthcoming.

Offline

#14 2024-02-27 15:39:02

thommen
Member
From: Poland
Registered: 2017-12-30
Posts: 238

Re: [SOLVED] How to change mouse speed/sensitivity?

V1del wrote:

That you do with libinput configuration indeed. If the default behaviour from using the "adaptive" acceleration profile is insufficient you can test the custom profile where you can give exact numbers for when acceleration happens: https://man.archlinux.org/man/libinput. … ON_PROFILE

Either it doesn't work in my case, or I don't know how (didn't understand) to use it.

For example, I set

libinput Accel Custom Motion Points (300):	0.500000, 0.500000
libinput Accel Profile Enabled (296):	0, 0, 1
xinput --list-props 8          
Device 'Razer Razer Basilisk X HyperSpeed':
	Device Enabled (154):	1
	Coordinate Transformation Matrix (156):	1.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 1.000000
	libinput Natural Scrolling Enabled (282):	0
	libinput Natural Scrolling Enabled Default (283):	0
	libinput Scroll Methods Available (284):	0, 0, 1
	libinput Scroll Method Enabled (285):	0, 0, 0
	libinput Scroll Method Enabled Default (286):	0, 0, 0
	libinput Button Scrolling Button (287):	2
	libinput Button Scrolling Button Default (288):	2
	libinput Button Scrolling Button Lock Enabled (289):	0
	libinput Button Scrolling Button Lock Enabled Default (290):	0
	libinput Middle Emulation Enabled (291):	0
	libinput Middle Emulation Enabled Default (292):	0
	libinput Rotation Angle (265):	0.000000
	libinput Rotation Angle Default (266):	0.000000
	libinput Accel Speed (293):	0.000000
	libinput Accel Speed Default (294):	0.000000
	libinput Accel Profiles Available (295):	1, 1, 1
	libinput Accel Profile Enabled (296):	0, 0, 1
	libinput Accel Profile Enabled Default (297):	1, 0, 0
	libinput Accel Custom Fallback Points (298):	<no items>
	libinput Accel Custom Fallback Step (299):	0.000000
	libinput Accel Custom Motion Points (300):	0.500000, 0.500000
	libinput Accel Custom Motion Step (301):	0.000000
	libinput Accel Custom Scroll Points (302):	<no items>
	libinput Accel Custom Scroll Step (303):	0.000000
	libinput Left Handed Enabled (304):	0
	libinput Left Handed Enabled Default (305):	0
	libinput Send Events Modes Available (267):	1, 0
	libinput Send Events Mode Enabled (268):	0, 0
	libinput Send Events Mode Enabled Default (269):	0, 0
	Device Node (270):	"/dev/input/event3"
	Device Product ID (271):	5426, 131
	libinput Drag Lock Buttons (306):	<no items>
	libinput Horizontal Scroll Enabled (307):	1
	libinput Scrolling Pixel Distance (308):	15
	libinput Scrolling Pixel Distance Default (309):	15
	libinput High Resolution Wheel Scroll Enabled (310):	1
seth wrote:

"and does this change anything"?

We're not playing a game of twenty questions here, pelase be more forthcoming.

Yes, there are noticeable differences here

Last edited by thommen (2024-02-27 15:40:18)

Offline

#15 2024-02-27 15:44:03

seth
Member
Registered: 2012-09-03
Posts: 58,809

Re: [SOLVED] How to change mouse speed/sensitivity?

Yes, there are noticeable differences here

So you're seeing "things" happening, interesting.
You need to do stuff do make it work…

'cause I'm out of this. Bye.

Offline

#16 2024-02-27 16:13:25

thommen
Member
From: Poland
Registered: 2017-12-30
Posts: 238

Re: [SOLVED] How to change mouse speed/sensitivity?

seth wrote:

Yes, there are noticeable differences here

So you're seeing "things" happening, interesting.
You need to do stuff do make it work…

'cause I'm out of this. Bye.

You can also go like this

libinput Accel Custom Motion Points (300):	0.000000, 1.000000, 5.000000, 10.000000, 15.000000
libinput Accel Custom Motion Step (301):	1.000000
libinput Accel Profile Enabled (296):	0, 0, 1

Last edited by thommen (2024-02-27 16:13:43)

Offline

Board footer

Powered by FluxBB