add x64 bins and arm64 bin

This commit is contained in:
Your Name
2026-08-03 02:08:58 -04:00
parent a53ba0a68e
commit cf7ba2d58a
25 changed files with 3565 additions and 48 deletions
+10 -1
View File
@@ -7,4 +7,13 @@ install_vlc() {
spawn "Installing vlc" sudo apt install -y vlc
}
install_vlc
uninstall_vlc() {
command -v vlc &>/dev/null || { log "vlc not installed"; return 0; }
spawn "Removing vlc" sudo apt purge -y vlc
spawn "Cleaning up dependencies" sudo apt autoremove -y
}
case "${1:-}" in
uninstall) uninstall_vlc ;;
*) install_vlc ;;
esac