duckstation

duckstation, but archived from the revision just before upstream changed it to a proprietary software project, this version is the libre one
git clone https://git.neptards.moe/u3shit/duckstation.git
Log | Files | Refs | README | LICENSE

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