From 72a9cf4517263b9c88e3455107e9f064820ca2be Mon Sep 17 00:00:00 2001 From: Storm Dragon Date: Sun, 24 Oct 2021 01:14:51 -0400 Subject: [PATCH] Update ability added. Normally this will be placed in /opt/configure-stormux, so update requires sudo. --- configure-stormux.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/configure-stormux.sh b/configure-stormux.sh index ff684d4..179b6cb 100755 --- a/configure-stormux.sh +++ b/configure-stormux.sh @@ -63,6 +63,10 @@ while [[ "$choice" != "Exit" ]]; do "Set up gaming") source .includes/gaming.sh ;; + "Update configure-stormux") + sudo git pull + exit $? + ;; esac choice="$(menulist \ "Change username" \ @@ -71,7 +75,7 @@ while [[ "$choice" != "Exit" ]]; do "Install Ratpoison Windowmanager" \ "Screen reader" \ "Set up gaming" \ - "Exit" \ + "Update configure-stormux" \ )" || break done