input/mouse: add accel_profile custom #8592
Open
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Support libinput LIBINPUT_CONFIG_ACCEL_PROFILE_CUSTOM to define a custom mouse pointer acceleration curve. Implements #8488.
Custom acceleration curve is documented in libinput https://wayland.freedesktop.org/libinput/doc/latest/pointer-acceleration.html#the-custom-acceleration-profile.
Some thoughts:
Custom acceleration is also supported for scrolling, but this commit only implements pointer motion (LIBINPUT_ACCEL_TYPE_MOTION).
We can't detect if values changed because libinput does not provide a way to read back values set by libinput_config_accel_set_points/libinput_device_config_accel_apply. Sway seems to want to know if it changed to trigger a notification (ipc_event_input).
I stuffed the "step" and "points" values into one config option. Maybe it's better to have two like libinput.conf AccelStepMotion/AccelPointsMotion.