summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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}