This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Mouse Wheel Speed Adjuster Script | |
| # Adjusts mouse wheel scrolling speed using imwheel | |
| # Check if imwheel is installed | |
| if ! command -v imwheel &>/dev/null; then | |
| echo "imwheel is not installed. Installing..." | |
| sudo apt-get update && sudo apt-get install -y imwheel | |
| fi |