Skip to content

Instantly share code, notes, and snippets.

View bielarusajed's full-sized avatar

Aliaksiej bielarusajed

View GitHub Profile
@bielarusajed
bielarusajed / 90-magic-trackpad-scroll-speed.lua
Last active June 5, 2026 11:05
libinput plugin for touchpad / trackpad scrolling speed control. Vibe coded.
-- Reduce Magic Trackpad two-finger scroll speed by scaling multitouch motion.
-- The curve is { touchpad-coordinate-units-per-ms, multiplier }.
-- Low speeds stay precise; fast swipes are slowed less.
local SCROLL_SPEED_CURVE = {
{ 0.0, 0.25 },
{ 1.0, 0.25 },
{ 4.0, 0.40 },
{ 10.0, 0.65 },
{ 25.0, 0.90 },
}