ported apps download/wget, fetch, label, and lscor/ps

for the fetch app to fully work, defenv has been edited to share _OSLOGO.
This commit is contained in:
Ponali
2025-09-14 18:46:26 +02:00
parent 3c087aaddf
commit ff04e730f9
5 changed files with 18 additions and 15 deletions
+7 -8
View File
@@ -1,9 +1,8 @@
print("\27[93m"..tostring(#cormgr.corList).."\27[0m coroutines active")
for i=1, #cormgr.corList do
if i==#cormgr.corList then
print("\27[93m└ "..i.."\27[0m - "..cormgr.labelList[i].." \27[0m")
else
print("\27[93m├ "..i.."\27[0m - "..cormgr.labelList[i].." \27[0m")
end
local tasks = tsched.getTasks()
print("\27[93m"..tostring(#tasks).."\27[0m coroutines active")
for i=1, #tasks do
local pipeChar = ""
if i==#tasks then pipeChar = "" end
local task = tasks[i]
print("\27[93m"..pipeChar..i.."\27[0m - "..task.name.."\27[37m "..table.concat(task.args or {}," ").." \27[0m")
end