From aba725a29e63b5ecd78dcd63a7a8be18f7cfa29f Mon Sep 17 00:00:00 2001 From: Kaley Fischer Date: Thu, 28 Dec 2023 18:54:20 +0100 Subject: [PATCH] env: forgot to add them back --- src/main.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/main.cpp b/src/main.cpp index 0f68c3b2..935e5a6a 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -34,6 +34,10 @@ int main(int argc, char** argv) { setenv("_JAVA_AWT_WM_NONREPARENTING", "1", 1); setenv("MOZ_ENABLE_WAYLAND", "1", 1); setenv("XDG_CURRENT_DESKTOP", "Hyprland", 1); + setenv("XDG_SESSION_TYPE", "wayland", 1); + setenv("QT_QPA_PLATFORM", "wayland", 1); + setenv("SDL_VIDEODRIVER", "wayland", 1); + setenv("OZONE_PLATFORM", "wayland", 1); // parse some args std::string configPath;