AppImageKit-checkrt/AppRun
lat9nq b9a00c30e2 AppRun: Set QT_QPA_PLATFORM at start of script
Forces yuzu to use X11 even on Wayland hosts.
2022-07-27 18:09:47 -04:00

30 lines
654 B
Bash
Executable file

#!/bin/sh -e
# Force xcb platform for Qt applications
if [ -z "${QT_QPA_PLATFORM}" ]; then
export QT_QPA_PLATFORM=xcb
fi
# add your command to execute here
exec=
cd "$(dirname "$0")"
if [ "x$exec" = "x" ]; then
exec="$(sed -n 's|^Exec=||p' *.desktop | head -1)"
fi
if [ -x "./usr/optional/checkrt" ]; then
extra_libs="$(./usr/optional/checkrt)"
fi
if [ -n "$extra_libs" ]; then
export LD_LIBRARY_PATH="${extra_libs}${LD_LIBRARY_PATH}"
if [ -e "$PWD/usr/optional/exec.so" ]; then
export LD_PRELOAD="$PWD/usr/optional/exec.so:${LD_PRELOAD}"
fi
fi
#echo ">>>>> $LD_LIBRARY_PATH"
#echo ">>>>> $LD_PRELOAD"
./usr/bin/$exec "$*"
exit $?