From a2f49db9de404508fdf276df64e63ff80df6fdc5 Mon Sep 17 00:00:00 2001 From: David Schroeder Date: Fri, 23 Nov 2018 10:02:32 -0600 Subject: [PATCH] Update linupx-scripts.sh --- linupx-scripts.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/linupx-scripts.sh b/linupx-scripts.sh index 8b3470e..fcb7b80 100755 --- a/linupx-scripts.sh +++ b/linupx-scripts.sh @@ -270,7 +270,7 @@ X11VNC_INSTALL() { * ) INSTALL_MENU;; esac } -LINUPX_UINSTALL() { +LINUPX_UNINSTALL() { read -n 1 -p "Are you sure you wish to remove LinUPx (y/n)?" choice case "$choice" in [Yy]) @@ -378,7 +378,7 @@ INSTALL_MENU() { echo " [2] Glances Install" echo " [3] x11vnc Install" echo "" - echo " [9] Remove LinUPx" + echo " [0] Remove LinUPx" echo "" echo " [B] Back to Update Scripts" echo " [Q] Quit" @@ -394,7 +394,7 @@ INSTALL_MENU() { INSTALL_MENU;; 3) X11VNC_INSTALL INSTALL_MENU;; - 9) LINUPX_UNINSTALL + 0) LINUPX_UNINSTALL INSTALL_MENU;; [Bb]) SCRIPT_MENU;; [Qq]) EXIT1