2020-12-29 18:45:46 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2021-07-29 22:15:03 +00:00
|
|
|
export GDK_PIXBUF_MODULEDIR=$(pkg-config --variable=gdk_pixbuf_moduledir gdk-pixbuf-2.0)
|
|
|
|
export GDK_PIXBUF_MODULE_FILE=$(pkg-config --variable=gdk_pixbuf_cache_file gdk-pixbuf-2.0)
|
|
|
|
|
2020-12-29 18:45:46 +00:00
|
|
|
mkdir -p $HOME/.local/share/icons/hicolor/scalable/apps && cp $APPDIR/yuzu.svg $HOME/.local/share/icons/hicolor/scalable/apps
|
|
|
|
|
2021-02-02 22:18:27 +00:00
|
|
|
GITVER=`wget -qO- https://api.github.com/repos/pineappleEA/pineapple-src/releases/latest | grep "releases/tag" | grep -o 'EA-[[:digit:]]*'`
|
2020-12-29 18:45:46 +00:00
|
|
|
APPVER=`cat $APPDIR/version.txt`
|
|
|
|
|
2021-01-22 03:50:31 +00:00
|
|
|
if [[ -z "$GITVER" ]]; then
|
2021-07-10 23:19:20 +00:00
|
|
|
$APPDIR/AppRun-patched
|
2021-01-22 03:50:31 +00:00
|
|
|
elif [ "$GITVER" = "$APPVER" ]; then
|
2021-07-10 23:19:20 +00:00
|
|
|
$APPDIR/AppRun-patched
|
2020-12-29 18:45:46 +00:00
|
|
|
else
|
|
|
|
$APPDIR/update.sh
|
|
|
|
fi
|