Skip to content

Instantly share code, notes, and snippets.

View hoangtrann's full-sized avatar
👋
Hello World!

Hoang Tran hoangtrann

👋
Hello World!
View GitHub Profile
@hoangtrann
hoangtrann / mousewheel_speed.sh
Created October 26, 2025 08:31
Control Mouse Wheel Speed
#!/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