From fda51af6a0b0e09ecf9b5560a128ae122efec435 Mon Sep 17 00:00:00 2001 From: Rivulet Date: Fri, 2 Jan 2026 12:23:08 -0800 Subject: [PATCH] fixed launcher process being visible in process manager --- Launcher/src/startup.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Launcher/src/startup.lua b/Launcher/src/startup.lua index 1b4a0cf..f7751b9 100644 --- a/Launcher/src/startup.lua +++ b/Launcher/src/startup.lua @@ -59,7 +59,7 @@ local function mainloop() local apps = app.getRunningApps() for i,pid in ipairs(apps) do local appData,msg = app.getDetail(pid) - if appData then + if appData and pid ~= 1 then processFrame:addLabel({ x=1, y=i, @@ -70,7 +70,7 @@ local function mainloop() x=w-1, y=i, background=colors.green, - foreground=colors.white + foreground=colors.red }):setText("X"):onClick(function (btn,x,y) app.closeApp(pid) mainloop() end) end end