default-to-x11.sh (361B)
1 if [[ -z "$I_WANT_A_BROKEN_WAYLAND_UI" ]]; then 2 echo "Forcing X11 instead of Wayland, due to various protocol limitations" 3 echo "and Qt issues. If you want to use Wayland, launch DuckStation with" 4 echo "I_WANT_A_BROKEN_WAYLAND_UI=YES set." 5 export QT_QPA_PLATFORM=xcb 6 else 7 echo "Wayland is not being disabled. Do not complain when things break." 8 fi 9