Skip to content

Commit f044e6c

Browse files
Don't show launcher app in launcher apps
1 parent f9ec35d commit f044e6c

File tree

1 file changed

+3
-0
lines changed
  • internal_filesystem/builtin/apps/com.micropythonos.launcher/assets

1 file changed

+3
-0
lines changed

internal_filesystem/builtin/apps/com.micropythonos.launcher/assets/launcher.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,9 @@ def onResume(self, screen):
4949

5050
# Create UI for each app
5151
for app in PackageManager.get_app_list():
52+
if app.category == "launcher":
53+
print("Skipping launcher app from launcher apps...")
54+
continue
5255
app_name = app.name
5356
app_dir_fullpath = app.installed_path
5457
print(f"Adding app {app_name} from {app_dir_fullpath}")

0 commit comments

Comments
 (0)