diff --git a/py_modules/decky_terminal/terminal.py b/py_modules/decky_terminal/terminal.py index 9a1938a..aff9983 100644 --- a/py_modules/decky_terminal/terminal.py +++ b/py_modules/decky_terminal/terminal.py @@ -122,6 +122,10 @@ async def _process_subscriber(self, ws: WebSocketServerProtocol): def get_terminal_env(self): result = dict(os.environ) + # Disable Steam internal library paths since it interferes with applications. + # TODO: Add option to enable Steam-internal libraries + del result["LD_LIBRARY_PATH"] + result.update({ "TERM": "xterm-256color", "PWD": result["HOME"],