summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorParty Wumpus <48649272+PartyWumpus@users.noreply.github.com>2024-03-17 21:48:58 +0000
committerGitHub <noreply@github.com>2024-03-17 21:48:58 +0000
commit842d3caac9af9dce23d93b93ac8b61143fb8b196 (patch)
tree63938c408d41198ad26f1dc0f11bbb79c94727c9
parentbd28059b56645266b24401b48b1e9858016a4f62 (diff)
downloaddecky-installer-842d3caac9af9dce23d93b93ac8b61143fb8b196.tar.gz
decky-installer-842d3caac9af9dce23d93b93ac8b61143fb8b196.zip
Make info message about release/pre more usefulv1.8.0
release = stable steamos (the client is really what matters though) prerelease = anything else (beta steam client)
-rw-r--r--gui/user_install_script.sh12
1 files changed, 6 insertions, 6 deletions
diff --git a/gui/user_install_script.sh b/gui/user_install_script.sh
index 4af6cd9..f474812 100644
--- a/gui/user_install_script.sh
+++ b/gui/user_install_script.sh
@@ -68,15 +68,15 @@ HOMEBREW_FOLDER="${USER_DIR}/homebrew"
# if decky is already installed, then add 'uninstall' and 'wipe' option
if [[ -f "${USER_DIR}/homebrew/services/PluginLoader" ]] ; then
- OPTION=$(zen_nospam --title="Decky Installer" --width=420 --height=200 --list --radiolist --text "Select Option:" --hide-header --column "Buttons" --column "Choice" --column "Info" \
- TRUE "update to latest release" "Recommended option" \
- FALSE "update to latest prerelease" "May be unstable" \
+ OPTION=$(zen_nospam --title="Decky Installer" --width=550 --height=200 --list --radiolist --text "Select Option:" --hide-header --column "Buttons" --column "Choice" --column "Info" \
+ TRUE "update to latest release" "Recommended for stable steamos" \
+ FALSE "update to latest prerelease" "Recommended for beta/preview steamos" \
FALSE "uninstall decky loader" "Will keep config intact" \
FALSE "wipe decky loader" "Will NOT keep config intact")
else
- OPTION=$(zen_nospam --title="Decky Installer" --width=300 --height=100 --list --radiolist --text "Select branch to install:" --hide-header --column "Buttons" --column "Choice" --column "Info" \
- TRUE "release" "(Recommended option)" \
- FALSE "prerelease" "(May be unstable)")
+ OPTION=$(zen_nospam --title="Decky Installer" --width=420 --height=100 --list --radiolist --text "Select branch to install:" --hide-header --column "Buttons" --column "Choice" --column "Info" \
+ TRUE "release" "Recommended for stable steamos" \
+ FALSE "prerelease" "Recommended for beta/preview steamos")
fi
if [[ $? -eq 1 ]] || [[ $? -eq 5 ]]; then