add x64 bins and arm64 bin
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user