Skip to content

Instantly share code, notes, and snippets.

@jvyden
Last active March 28, 2023 00:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jvyden/bedb64cc23c569e3ecc1422544a9d3f6 to your computer and use it in GitHub Desktop.
Save jvyden/bedb64cc23c569e3ecc1422544a9d3f6 to your computer and use it in GitHub Desktop.
Force a program to use X11 under XWayland. Invocation: `force-x11.sh <program> <args>`
#!/bin/bash
export SDL_VIDEODRIVER=x11
export MOZ_ENABLE_WAYLAND=false
export XDG_SESSION_TYPE=x11
export GDK_BACKEND=x11
export QT_QPA_PLATFORM=xcb
"$@"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment