mirror of
https://github.com/moraroy/NonSteamLaunchers-On-Steam-Deck.git
synced 2024-12-21 23:31:52 +01:00
Update NSLPluginInstaller.sh
This commit is contained in:
parent
af2d7bad52
commit
9d78ebc396
@ -46,21 +46,28 @@ fi
|
|||||||
set +x
|
set +x
|
||||||
|
|
||||||
if $DECKY_LOADER_EXISTS; then
|
if $DECKY_LOADER_EXISTS; then
|
||||||
USER_INPUT=$(zenity --forms --title="Authentication Required" --text="Decky Loader detected! $(if $NSL_PLUGIN_EXISTS; then echo 'NSL Plugin also detected and will be updated to the latest version 🚀.'; else echo 'But no NSL plugin :(. Would you like to inject it and go to Game Mode?
|
while true; do
|
||||||
'; fi) Please enter your password to proceed:" --separator="|" --add-password="Password")
|
USER_INPUT=$(zenity --forms --title="Authentication Required" --text="Decky Loader detected! $(if $NSL_PLUGIN_EXISTS; then echo 'NSL Plugin also detected and will be updated to the latest version 🚀.'; else echo 'But no NSL plugin :(. Would you like to inject it and go to Game Mode?'; fi) Please enter your password to proceed:" --separator="|" --add-password="Password")
|
||||||
|
USER_PASSWORD=$(echo $USER_INPUT | cut -d'|' -f1)
|
||||||
|
|
||||||
|
if [ -z "$USER_PASSWORD" ]; then
|
||||||
|
zenity --error --text="No password entered. Exiting."
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo "$USER_PASSWORD" | sudo -S echo "Password accepted" 2>/dev/null
|
||||||
|
if [ $? -eq 0 ]; then
|
||||||
|
break
|
||||||
|
else
|
||||||
|
zenity --error --text="Incorrect password. Please try again."
|
||||||
|
fi
|
||||||
|
done
|
||||||
else
|
else
|
||||||
zenity --error --text="Decky Loader not detected. Please download and install it from their website first and re-run this script to get the NSL Plugin."
|
zenity --error --text="Decky Loader not detected. Please download and install it from their website first and re-run this script to get the NSL Plugin."
|
||||||
rm -rf "$download_dir"
|
rm -rf "$download_dir"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
USER_PASSWORD=$(echo $USER_INPUT | cut -d'|' -f1)
|
|
||||||
|
|
||||||
if [ -z "$USER_PASSWORD" ]; then
|
|
||||||
zenity --error --text="No password entered. Exiting."
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
if $NSL_PLUGIN_EXISTS; then
|
if $NSL_PLUGIN_EXISTS; then
|
||||||
show_message "NSL Plugin detected. Deleting and updating..."
|
show_message "NSL Plugin detected. Deleting and updating..."
|
||||||
echo "Plugin directory exists. Removing..."
|
echo "Plugin directory exists. Removing..."
|
||||||
@ -77,7 +84,6 @@ curl -L "$REPO_URL" -o /tmp/NonSteamLaunchersDecky.zip
|
|||||||
echo "$USER_PASSWORD" | sudo -S unzip -o /tmp/NonSteamLaunchersDecky.zip -d /tmp/
|
echo "$USER_PASSWORD" | sudo -S unzip -o /tmp/NonSteamLaunchersDecky.zip -d /tmp/
|
||||||
echo "$USER_PASSWORD" | sudo -S cp -r /tmp/NonSteamLaunchersDecky-main/* "$LOCAL_DIR"
|
echo "$USER_PASSWORD" | sudo -S cp -r /tmp/NonSteamLaunchersDecky-main/* "$LOCAL_DIR"
|
||||||
|
|
||||||
|
|
||||||
echo "$USER_PASSWORD" | sudo -S rm -rf /tmp/NonSteamLaunchersDecky*
|
echo "$USER_PASSWORD" | sudo -S rm -rf /tmp/NonSteamLaunchersDecky*
|
||||||
|
|
||||||
set -x
|
set -x
|
||||||
|
Loading…
Reference in New Issue
Block a user