-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CI/AppImage: Add I_WANT_A_BROKEN_WAYLAND_UI environment variable
- Loading branch information
Showing
2 changed files
with
60 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 9 additions & 0 deletions
9
.github/workflows/scripts/linux/apprun-hooks/default-to-x11.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
if [[ -z "$I_WANT_A_BROKEN_WAYLAND_UI" ]]; then | ||
echo "Forcing X11 instead of Wayland, due to various protocol limitations" | ||
echo "and Qt issues. If you want to use Wayland, launch PCSX2 with" | ||
echo "I_WANT_A_BROKEN_WAYLAND_UI=YES set." | ||
export QT_QPA_PLATFORM=xcb | ||
else | ||
echo "Wayland is not being disabled. Do not complain when things break." | ||
fi | ||
|