mirror of
https://github.com/yuzu-emu/AppImageKit-checkrt
synced 2024-11-23 17:33:49 +00:00
AppRun: Set QT_QPA_PLATFORM at start of script
Forces yuzu to use X11 even on Wayland hosts.
This commit is contained in:
parent
d40433f651
commit
b9a00c30e2
1 changed files with 5 additions and 0 deletions
5
AppRun
5
AppRun
|
@ -1,5 +1,10 @@
|
||||||
#!/bin/sh -e
|
#!/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
|
# add your command to execute here
|
||||||
exec=
|
exec=
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue