Skip to content

Instantly share code, notes, and snippets.

View brandleesee's full-sized avatar
🇲🇹

Brandon Lee Camilleri brandleesee

🇲🇹
  • Malta, Europe
  • 10:43 (UTC +01:00)
View GitHub Profile
@brandleesee
brandleesee / nala_update.sh
Created September 8, 2025 20:45
Nala Update Script
clear && sudo nala upgrade -y && sudo nala autoremove -y && sudo nala autopurge -y && sudo nala clean
@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 December 29, 2024 16:25
Ubuntu Update Script
clear && sudo apt clean && sudo apt update -y && sudo dpkg --configure -a -y && sudo apt install -f -y && sudo apt dist-upgrade -y && sudo apt autoremove --purge -y