From 6b6ffcdaf80b926f96fd610717378240df918707 Mon Sep 17 00:00:00 2001 From: Joshua Ashton Date: Tue, 26 Sep 2023 06:16:11 +0100 Subject: [PATCH] steamcompmgr: Enable Gamescope WSI layer by default in nested Hopefully this has had enough testing and can be used now. At the very least, this will help us smoke out some issues. --- src/steamcompmgr.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/steamcompmgr.cpp b/src/steamcompmgr.cpp index 126ca5a..fa35867 100644 --- a/src/steamcompmgr.cpp +++ b/src/steamcompmgr.cpp @@ -6402,6 +6402,8 @@ spawn_client( char **argv ) unsetenv( "ENABLE_VKBASALT" ); + // Enable Gamescope WSI by default for nested. + setenv( "ENABLE_GAMESCOPE_WSI", "1", 0 ); execvp( argv[ 0 ], argv ); xwm_log.errorf_errno( "execvp failed" );