ubuntu:mouse:change_mouse_sensitivity
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
ubuntu:mouse:change_mouse_sensitivity [2021/10/26 10:10] – created peter | ubuntu:mouse:change_mouse_sensitivity [2021/10/26 10:50] (current) – peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== Ubuntu - Mouse - Change Mouse Sensitivity ====== | ====== Ubuntu - Mouse - Change Mouse Sensitivity ====== | ||
+ | * [[Ubuntu: | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Determine the system ===== | ||
+ | |||
+ | <code bash> | ||
+ | xinput list-props 8 | ||
+ | </ | ||
+ | |||
+ | returns: | ||
+ | |||
+ | <code bash> | ||
+ | Device 'Razer Razer DeathAdder V2': | ||
+ | Device Enabled (155): 1 | ||
+ | Coordinate Transformation Matrix (157): | ||
+ | libinput Natural Scrolling Enabled (291): 0 | ||
+ | libinput Natural Scrolling Enabled Default (292): 0 | ||
+ | libinput Scroll Methods Available (293): 0, 0, 1 | ||
+ | libinput Scroll Method Enabled (294): 0, 0, 0 | ||
+ | libinput Scroll Method Enabled Default (295): 0, 0, 0 | ||
+ | libinput Button Scrolling Button (296): 2 | ||
+ | libinput Button Scrolling Button Default (297): 2 | ||
+ | libinput Middle Emulation Enabled (298): 0 | ||
+ | libinput Middle Emulation Enabled Default (299): 0 | ||
+ | libinput Accel Speed (300): | ||
+ | libinput Accel Speed Default (301): | ||
+ | libinput Accel Profiles Available (302): 1, 1 | ||
+ | libinput Accel Profile Enabled (303): 1, 0 | ||
+ | libinput Accel Profile Enabled Default (304): 1, 0 | ||
+ | libinput Left Handed Enabled (305): 0 | ||
+ | libinput Left Handed Enabled Default (306): 0 | ||
+ | libinput Send Events Modes Available (276): 1, 0 | ||
+ | libinput Send Events Mode Enabled (277): 0, 0 | ||
+ | libinput Send Events Mode Enabled Default (278): 0, 0 | ||
+ | Device Node (279): | ||
+ | Device Product ID (280): | ||
+ | libinput Drag Lock Buttons (307): | ||
+ | libinput Horizontal Scroll Enabled (308): 1 | ||
+ | </ | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE: | ||
+ | |||
+ | * The **libinput** lines indicate that this is **Wayland/ | ||
+ | |||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== On Wayland/ | ||
+ | |||
+ | <code bash> | ||
+ | xinput --set-prop " | ||
+ | </ | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE: | ||
+ | |||
+ | * Check [[https:// | ||
+ | |||
+ | * libinput calculates the mouse acceleration depending on the DPI and the parameter Acceleration Speed. | ||
+ | |||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== On non-Wayland/ | ||
+ | |||
+ | <code bash> | ||
+ | xinput --set-prop " | ||
+ | </ | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE: | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ==== To turn off mouse acceleration ==== | ||
+ | |||
+ | <code bash> | ||
+ | xinput --set-prop "Razer DeathAdder" | ||
+ | xinput --set-prop "Razer DeathAdder" | ||
+ | </ | ||
+ | |||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Confirm any changes ===== | ||
+ | |||
+ | <code bash> | ||
+ | xinput --list-props 8 | ||
+ | </ | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE:** The 8 is the device-id per [[Ubuntu: | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Using xset to change acceleration ===== | ||
+ | |||
+ | xset can also be used to change acceleration. | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE:** xset does not use libinput. | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ==== Get the current xset values ==== | ||
+ | |||
+ | <code bash> | ||
+ | xset q | grep -A 1 Pointer | ||
+ | </ | ||
+ | |||
+ | returns: | ||
+ | |||
+ | <code bash> | ||
+ | Pointer Control: | ||
+ | acceleration: | ||
+ | </ | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE:** | ||
+ | |||
+ | * **acceleration** defines how many times faster the cursor will move than the default speed. | ||
+ | * acceleration can be a fraction. | ||
+ | * To slow down the mouse, use 1/2, 1/3, 1/4, ... | ||
+ | * To make it faster, use 2/1, 3/1, 4/1, ... | ||
+ | |||
+ | * **threshold** is the velocity required for acceleration to become effective, usually measured in device units per 10ms. | ||
+ | * Threshold defines the point at which acceleration should occur in pixels per 10 ms. | ||
+ | * If threshold is zero, then acceleration is treated as "the exponent of a more natural and continuous formula." | ||
+ | * This gives precise control for slow motion but big reach for fast motion, and a progressive transition for motions in between. | ||
+ | |||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ==== Set new values ==== | ||
+ | |||
+ | <code bash> | ||
+ | xset m acceleration threshold | ||
+ | </ | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE:** | ||
+ | |||
+ | * **acceleration** defines how many times faster the cursor will move than the default speed. | ||
+ | * acceleration can be a fraction. | ||
+ | * To slow down the mouse, use 1/2, 1/3, 1/4, ... | ||
+ | * To make it faster, use 2/1, 3/1, 4/1, ... | ||
+ | |||
+ | * **threshold** is the velocity required for acceleration to become effective, usually measured in device units per 10ms. | ||
+ | * Threshold defines the point at which acceleration should occur in pixels per 10 ms. | ||
+ | * If threshold is zero, then acceleration is treated as "the exponent of a more natural and continuous formula." | ||
+ | * This gives precise control for slow motion but big reach for fast motion, and a progressive transition for motions in between. | ||
+ | * Recommended acceleration value in this case is 3/2 to 2, but not limited to that range. <code bash> | ||
+ | xset m 3/2 0 | ||
+ | </ | ||
+ | |||
+ | </ | ||
+ | |||
+ | |||
+ | To reduce mouse acceleration | ||
+ | |||
+ | <code bash> | ||
+ | xset mouse 1 1 | ||
+ | </ | ||
+ | |||
+ | To increase the mouse speed | ||
+ | <code bash> | ||
+ | xset mouse 10 1 | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ==== Reset xset to the default settings ==== | ||
+ | |||
+ | <code bash> | ||
+ | xset m default | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Save the New Setting Permanently ===== | ||
+ | |||
+ | Add a new file in **/ | ||
+ | |||
+ | For example, / | ||
+ | |||
+ | <file bash / | ||
+ | Section " | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | EndSection | ||
+ | </ | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE: | ||
+ | |||
+ | * The filename can be anything similar. | ||
+ | |||
+ | * **Identifier**: | ||
+ | * **MatchProduct**: | ||
+ | * **Option**: | ||
+ | |||
+ | </ | ||
+ | |||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== References ===== | ||
+ | |||
+ | https:// | ||
+ | |||
+ | https:// | ||
+ | |||
+ | https:// |
ubuntu/mouse/change_mouse_sensitivity.1635243036.txt.gz · Last modified: 2021/10/26 10:10 by peter