From ab00ada734c3b33b3592d4c8e1cd9976b0554b58 Mon Sep 17 00:00:00 2001 From: "Alexandre Cavalheiro S. Tiago da Silva" Date: Tue, 9 Jul 2024 06:34:21 -0300 Subject: [PATCH] scripts: remove envvars from game launch script --- scripts/games/launch.sh | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/scripts/games/launch.sh b/scripts/games/launch.sh index 3ff1fe9..c738bb9 100755 --- a/scripts/games/launch.sh +++ b/scripts/games/launch.sh @@ -1,9 +1,7 @@ #!/bin/sh -export MANGOHUD=1 - +# I've removed all environment variables +# but there might be useful ones in the future. # https://docs.mesa3d.org/envvars.html -export MESA_NO_DITHER=1 # Disables dither -export MESA_BACK_BUFFER=pixmap # For X only -gamemoderun "$@" +mangohud gamemoderun "$@"