Skip to content

Instantly share code, notes, and snippets.

View brandleesee's full-sized avatar
🇲🇹

Brandon Lee Camilleri brandleesee

🇲🇹
View GitHub Profile
@brandleesee
brandleesee / install.sh
Last active April 18, 2024 17:54
Streaming a Playlist in Terminal
sudo apt install wget mplayer && wget "https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp" && chmod +x yt-dlp
@brandleesee
brandleesee / input.conf
Created January 14, 2024 18:50
MPV - Mouse Scroll for Volume
MOUSE_BTN3 add volume 5
MOUSE_BTN4 add volume -5
@brandleesee
brandleesee / update.sh
Last active January 27, 2024 07:19
Ubuntu Update Script
clear && sudo apt update -y && sudo apt dist-upgrade -y && sudo apt install -f -y && sudo apt autoremove -y && sudo apt clean