2020-12-29 22:48:46 +04:00
|
|
|
#!/bin/bash
|
|
|
|
|
2022-06-29 17:58:30 +04:00
|
|
|
directory=${APPIMAGE%${ARGV0/*\//}}
|
2022-06-22 17:50:49 +04:00
|
|
|
|
2022-06-22 18:18:11 +04:00
|
|
|
if [ -w $directory ] ; then
|
|
|
|
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=$?
|
|
|
|
|
|
|
|
if [ "$answer" -eq 0 ]; then
|
|
|
|
|
|
|
|
$APPDIR/usr/bin/AppImageUpdate $APPIMAGE && "$directory"yuzu-x86_64.AppImage "$@"
|
|
|
|
|
|
|
|
elif [ "$answer" -eq 1 ]; then
|
|
|
|
$APPDIR/AppRun-patched "$@"
|
|
|
|
elif [ "$answer" -eq 5 ]; then
|
2022-06-22 17:50:49 +04:00
|
|
|
$APPDIR/AppRun-patched "$@"
|
|
|
|
fi
|
2022-06-22 18:18:11 +04:00
|
|
|
|
|
|
|
else
|
|
|
|
zenity --error --timeout=5 --text="Cannot update in $directory" --title="Update Error" --width=500 --width=200
|
2022-04-12 07:13:36 +04:00
|
|
|
$APPDIR/AppRun-patched "$@"
|
2020-12-29 22:48:46 +04:00
|
|
|
fi
|
|
|
|
exit 0
|