Hyprland icon indicating copy to clipboard operation
Hyprland copied to clipboard

Independent Touchpad Acceleration Profile 2

Open camerondugan opened this issue 1 year ago • 0 comments

Description

Hyprland Version

built from branch at commit v0.32.3 ().

Main Issue

original: #898 Make it easy to bring hyprland config to new devices with touchpads.

Solutions

Two options:

  1. Wildcard device rules: would allow for:
device:*-touchpad { 
  accel_profile = adaptive
}
  1. Allow the following:
input {
  accel_profile = flat # mouse/other
  touchpad {
    accel_profile = adaptive
  }
}

Current process feels bad. You need to find the device name and add it to config and have copy-pasted config for every touchpad you use.

Current Solution Example

device:########:######:##1-touchpad {
  accel_profile = adaptive
}
device:########:######:##2-touchpad {
  accel_profile = adaptive
}
device:########:######:##3-touchpad {
  accel_profile = adaptive
}
device:########:######:##4-touchpad {
  accel_profile = adaptive
}

camerondugan avatar Dec 18 '23 04:12 camerondugan