2022-09-04 21:43:37 +00:00
|
|
|
#!/bin/sh
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
# Copyright (C) 2021-present - Fewtarius
|
|
|
|
|
|
|
|
. /etc/profile
|
|
|
|
|
|
|
|
ARG=${1//[\\]/}
|
2023-09-30 00:12:44 +00:00
|
|
|
|
2023-06-12 21:23:01 +00:00
|
|
|
jslisten set "-9 pcsx2-qt"
|
|
|
|
|
2022-09-22 23:50:28 +00:00
|
|
|
if [ ! -d "/storage/.config/PCSX2" ]
|
|
|
|
then
|
|
|
|
cp -rf /usr/config/PCSX2 /storage/.config
|
|
|
|
fi
|
2023-09-30 00:12:44 +00:00
|
|
|
@APPIMAGE@ -fastboot -nogui -- "${ARG}"
|
|
|
|
|
2023-08-07 21:31:05 +00:00
|
|
|
#Workaround until we can learn why it doesn't exit cleanly when asked.
|
2023-09-30 00:12:44 +00:00
|
|
|
killall -9 pcsx2-qt
|