2020-12-29 18:48:46 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
zenity --question --timeout=10 --title="yuzu updater" --text="New update available. Update now?" --icon-name=yuzu --window-icon=yuzu.svg --height=80 --width=400
|
|
|
|
answer=$?
|
|
|
|
|
2022-06-22 13:50:49 +00:00
|
|
|
directory=${APPIMAGE%$ARGV0}
|
|
|
|
|
2020-12-29 18:48:46 +00:00
|
|
|
if [ "$answer" -eq 0 ]; then
|
2022-06-22 13:50:49 +00:00
|
|
|
if [ -w $directory ] ; then
|
|
|
|
$APPDIR/usr/bin/AppImageUpdate $APPIMAGE && "$directory"yuzu-x86_64.AppImage "$@"
|
|
|
|
else
|
|
|
|
echo -e "Cannot update in $directory\n\n"
|
|
|
|
$APPDIR/AppRun-patched "$@"
|
|
|
|
fi
|
2020-12-29 18:48:46 +00:00
|
|
|
elif [ "$answer" -eq 1 ]; then
|
2022-04-12 03:13:36 +00:00
|
|
|
$APPDIR/AppRun-patched "$@"
|
2020-12-29 18:48:46 +00:00
|
|
|
elif [ "$answer" -eq 5 ]; then
|
2022-04-12 03:13:36 +00:00
|
|
|
$APPDIR/AppRun-patched "$@"
|
2020-12-29 18:48:46 +00:00
|
|
|
fi
|
|
|
|
exit 0
|