Files
linux-workspace/scripts/mouse-wheel-install.sh
2022-10-16 19:04:06 +02:00

11 lines
240 B
Bash
Executable File

#!/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