From e56d1875f482fb74ca2f6a7e1050463aa012367c Mon Sep 17 00:00:00 2001 From: Party Wumpus <48649272+PartyWumpus@users.noreply.github.com> Date: Mon, 20 Mar 2023 21:39:03 +0000 Subject: Add checks to .desktop file --- gui/decky_installer.desktop | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gui') diff --git a/gui/decky_installer.desktop b/gui/decky_installer.desktop index 2a90683..331535d 100644 --- a/gui/decky_installer.desktop +++ b/gui/decky_installer.desktop @@ -1,7 +1,7 @@ #!/usr/bin/env xdg-open [Desktop Entry] Name=Install Decky -Exec=sh -c 'curl -L -O --output-dir /tmp/ https://github.com/SteamDeckHomebrew/decky-installer/releases/latest/download/user_install_script.sh 2> /dev/null && bash /tmp/user_install_script.sh' +Exec=sh -c 'if curl -S -s -L -O --output-dir /tmp/ --connect-timeout 15 https://github.com/SteamDeckHomebrew/decky-installer/releases/latest/download/user_install_script.sh; then bash /tmp/user_install_script.sh; else echo "Something went wrong, please report this bug"; read; fi' Icon=steamdeck-gaming-return Terminal=true Type=Application -- cgit v1.2.3