1
1
mirror of https://git.shadowkat.net/izaya/OC-PsychOS2.git synced 2025-04-07 21:20:53 -04:00
OC-PsychOS2/exec/init.lua
XeonSquared aaccc053d3 cursed
2019-10-27 23:34:02 +11:00

9 lines
265 B
Lua

xpcall(function()
io.input("/dev/tty0")
io.output("/dev/tty0")
os.setenv("PWD","/boot")
io.write("PsychOS v2.0a1 - ")
print(tostring(math.floor(computer.totalMemory()/1024)).."K RAM")
os.spawnfile("/boot/exec/shell.lua")
end,function(e) dprint(e) end,"init test")