From 54d6072a42a3a44a0add146db10ef06b82c3b3e2 Mon Sep 17 00:00:00 2001 From: Martin Blazik Date: Sun, 16 Oct 2022 18:59:51 +0200 Subject: [PATCH] mouse wheel speed script --- scripts/mouse-wheel-install.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100755 scripts/mouse-wheel-install.sh diff --git a/scripts/mouse-wheel-install.sh b/scripts/mouse-wheel-install.sh new file mode 100755 index 0000000..248582e --- /dev/null +++ b/scripts/mouse-wheel-install.sh @@ -0,0 +1,10 @@ +#!/bin/bash + +# https://linuxhint.com/change-mouse-scroll-speed-ubuntu/ + +MOUSEWHEEL="$LWS/opt/bin/mousewheel.sh" + +sudo apt install imwheel +wget -O "$MOUSEWHEEL" http://www.nicknorton.net/mousewheel.sh +chmod +x "$MOUSEWHEEL" +unset MOUSEWHEEL