Skip to content

Commit

Permalink
fix: prevent ssh from loading wrong openssl
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex4386 committed Mar 20, 2024
1 parent 46ad9ed commit 86ce8a6
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions py_modules/decky_terminal/terminal.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"],
Expand Down

0 comments on commit 86ce8a6

Please sign in to comment.