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