Skip to content

Commit

Permalink
chore(hyprland): update Per-device input configs
Browse files Browse the repository at this point in the history
  • Loading branch information
raexera committed Nov 22, 2024
1 parent dc20e99 commit be25d65
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions home/raexera/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,17 @@
device = let
# Generated using https://gist.github.com/fufexan/e6bcccb7787116b8f9c31160fc8bc543
accelpoints = "0.000 0.053 0.115 0.189 0.280 0.391 0.525 0.687 0.880 1.108 1.375 1.684 2.040 2.446 2.905 3.422 4.000 4.643 5.355 6.139";
in {
name = "pnp0c50:00-06cb:cec0-touchpad";
accel_profile = "custom ${accelpoints}";
scroll_points = accelpoints;
natural_scroll = true;
};
in [
{
name = "pnp0c50:00-06cb:cec0-touchpad";
accel_profile = "custom ${accelpoints}";
scroll_points = accelpoints;
natural_scroll = true;
}
{
name = "cust0000:00-27c6:0123";
enabled = false;
}
];
};
}

0 comments on commit be25d65

Please sign in to comment.