From 469af204f78d8ea458abee8b27bfeeaf9494124a Mon Sep 17 00:00:00 2001 From: vaxerski <43317083+vaxerski@users.noreply.github.com> Date: Wed, 30 Mar 2022 22:38:07 +0200 Subject: [PATCH] Set envvars to encourage apps to use wayland --- src/Compositor.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/Compositor.cpp b/src/Compositor.cpp index d559ea3a..9665ec37 100644 --- a/src/Compositor.cpp +++ b/src/Compositor.cpp @@ -148,6 +148,12 @@ void CCompositor::startCompositor() { initAllSignals(); + // Set some env vars so that Firefox is automatically in Wayland mode + // and QT apps too + // electron needs -- flags so we can't really set them here + setenv("QT_QPA_PLATFORM", "wayland", true); + setenv("MOZ_ENABLE_WAYLAND", "1", true); + m_szWLDisplaySocket = wl_display_add_socket_auto(m_sWLDisplay); if (!m_szWLDisplaySocket) {