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_obs() {
spawn "Installing obs-studio" sudo apt install -y obs-studio
}
install_obs
uninstall_obs() {
command -v obs &>/dev/null || { log "obs-studio not installed"; return 0; }
spawn "Removing obs-studio" sudo apt purge -y obs-studio
spawn "Cleaning up dependencies" sudo apt autoremove -y
}
case "${1:-}" in
uninstall) uninstall_obs ;;
*) install_obs ;;
esac