From a17e751074ab6e86aa479e197bd5a284c537704e Mon Sep 17 00:00:00 2001 From: ItsHarper Date: Sun, 24 Aug 2025 14:41:46 -0500 Subject: [PATCH] Add Projectivity Launcher as launcher app --- src/apps.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/apps.py b/src/apps.py index fff7b6b..327204f 100644 --- a/src/apps.py +++ b/src/apps.py @@ -4,7 +4,12 @@ def is_homescreen_app(app_id: str) -> bool: """Check if the app is a homescreen app.""" # make sure each app_id is defined in IdMappings below! - return app_id in ["com.android.systemui", "com.google.android.tvlauncher", "com.google.android.apps.tv.launcherx"] + return app_id in [ + "com.android.systemui", + "com.google.android.tvlauncher", + "com.google.android.apps.tv.launcherx", + "com.spocky.projengmenu", # Projectivity Launcher + ] def is_standby_app(app_id: str) -> bool: