From 86ce8a6a074715b4025758fcd9537e539d9ac80d Mon Sep 17 00:00:00 2001 From: Sanghee Park Date: Wed, 20 Mar 2024 09:47:33 +0900 Subject: [PATCH] fix: prevent ssh from loading wrong openssl --- py_modules/decky_terminal/terminal.py | 4 ++++ 1 file changed, 4 insertions(+) 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"],