mirror of
https://github.com/CCLeonOS/LeonOS.git
synced 2026-03-03 15:17:01 +00:00
11 lines
199 B
Lua
11 lines
199 B
Lua
|
|
local rc = require("rc")
|
||
|
|
local term = require("term")
|
||
|
|
local colors = require("colors")
|
||
|
|
|
||
|
|
term.setTextColor(colors.yellow)
|
||
|
|
print("Shutting down")
|
||
|
|
|
||
|
|
if (...) ~= "now" then rc.sleep(1) end
|
||
|
|
|
||
|
|
rc.shutdown()
|