mirror of https://github.com/PCSX2/pcsx2.git
16 lines
462 B
Bash
Executable File
16 lines
462 B
Bash
Executable File
#!/bin/bash
|
|
|
|
export LD_LIBRARY_PATH="$APPDIR/usr/lib:$LD_LIBRARY_PATH"
|
|
BINARY_NAME=$(basename "$ARGV0")
|
|
if [[ ! -e "$PWD/$BINARY_NAME.config" ]]; then
|
|
mkdir "$PWD/$BINARY_NAME.config"
|
|
fi
|
|
export XDG_CONFIG_HOME="$PWD/$BINARY_NAME.config"
|
|
|
|
ln -sf $APPDIR/usr/bin/app /tmp/PCSX2
|
|
mkdir -p $HOME/.local/share/icons/hicolor/scalable/apps && cp $APPDIR/PCSX2.png $HOME/.local/share/icons/hicolor/scalable/apps
|
|
|
|
$APPDIR/AppRun-patched
|
|
|
|
unlink /tmp/PCSX2
|