Threads
startThread(function)
startThread(function)-- Example code showing how to use the function
local threadId = threads.startThread(function()
local notification_command = 'snoretoast -t "' .. title .. '" -m "' .. message .. '"'
os.execute(notification_command)
end)sleep(delay)
sleep(delay)Last updated