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
|
#!/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