mirror of
https://github.com/yuzu-emu/AppImageKit-checkrt
synced 2024-11-23 14:43:33 +00:00
Merge pull request #1 from lat9nq/qt-xcb
AppRun: Set QT_QPA_PLATFORM at start of script
This commit is contained in:
commit
2bde0d486d
1 changed files with 5 additions and 0 deletions
5
AppRun
5
AppRun
|
@ -1,5 +1,10 @@
|
|||
#!/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=
|
||||
|
||||
|
|
Loading…
Reference in a new issue