Renamed lscor to lstsk.

Also added an alias from lscor to lstsk.
This commit is contained in:
WahPlus
2025-10-28 19:13:54 +02:00
parent 337f8af1df
commit 8144d44deb
2 changed files with 2 additions and 2 deletions
+8
View File
@@ -0,0 +1,8 @@
local tasks = tsched.getTasks()
print("\27[93m"..tostring(#tasks).."\27[0m tasks active")
for i=1, #tasks do
local pipeChar = ""
if i==#tasks then pipeChar = "" end
local task = tasks[i]
print("\27[93m"..pipeChar..(task.id or i).."\27[0m - "..task.name.."\27[37m "..table.concat(task.args or {}," ").." \27[0m")
end