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
@@ -17,4 +17,13 @@ install_termius() {
log "Termius installed — launch with 'termius'"
}
install_termius
uninstall_termius() {
command -v termius &>/dev/null || { log "termius not installed"; return 0; }
spawn "Removing termius" sudo apt purge -y termius
spawn "Cleaning up dependencies" sudo apt autoremove -y
}
case "${1:-}" in
uninstall) uninstall_termius ;;
*) install_termius ;;
esac
+10 -1
View File
@@ -7,4 +7,13 @@ install_vnc_viewer() {
spawn "Installing tigervnc-viewer" sudo apt install -y tigervnc-viewer
}
install_vnc_viewer
uninstall_vnc_viewer() {
command -v vncviewer &>/dev/null || { log "tigervnc-viewer not installed"; return 0; }
spawn "Removing tigervnc-viewer" sudo apt purge -y tigervnc-viewer
spawn "Cleaning up dependencies" sudo apt autoremove -y
}
case "${1:-}" in
uninstall) uninstall_vnc_viewer ;;
*) install_vnc_viewer ;;
esac