From 4c2caabb2ecdba3c51516b048963ed539df65ed8 Mon Sep 17 00:00:00 2001 From: xXJSONDeruloXx Date: Mon, 27 Jan 2025 13:42:08 -0500 Subject: fix: remove steam linux runtimes from applist --- main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'main.py') 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} -- cgit v1.2.3