mirror of https://github.com/stenzek/duckstation
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
408 B
Bash
14 lines
408 B
Bash
#!/bin/sh
|
|
|
|
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 DuckStation 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
|
|
|
|
exec /opt/duckstation/duckstation-qt "$@"
|
|
|