-- startup.lua local mon = peripheral.find("monitor") if mon then mon.clear() mon.setCursorPos(1,1) mon.write("Hello from Opus!") while true do os.sleep(1) end end