summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxXJSONDeruloXx <danielhimebauch@gmail.com>2025-01-27 13:42:08 -0500
committerxXJSONDeruloXx <danielhimebauch@gmail.com>2025-01-27 13:42:08 -0500
commit4c2caabb2ecdba3c51516b048963ed539df65ed8 (patch)
tree8ebac5f310422e899074077464c7c38cbdc90415
parenta26ec1e01776a26a517681f7a2bdaef88d171279 (diff)
downloadDecky-Framegen-4c2caabb2ecdba3c51516b048963ed539df65ed8.tar.gz
Decky-Framegen-4c2caabb2ecdba3c51516b048963ed539df65ed8.zip
fix: remove steam linux runtimes from applist
-rw-r--r--main.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/main.py b/main.py
index 06fe13d..66a81d0 100644
--- a/main.py
+++ b/main.py
@@ -150,8 +150,8 @@ class Plugin:
if game_info["appid"] and game_info["name"]:
games.append(game_info)
- # Filter out games whose name contains "Proton"
- filtered_games = [g for g in games if "Proton" not in g["name"]]
+ # Filter out games whose name contains "Proton" or "Steam Linux Runtime"
+ filtered_games = [g for g in games if "Proton" not in g["name"] and "Steam Linux Runtime" not in g["name"]]
return {"status": "success", "games": filtered_games}