diff options
Diffstat (limited to 'system/setup.lua')
| -rw-r--r-- | system/setup.lua | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/system/setup.lua b/system/setup.lua new file mode 100644 index 0000000..644d0ed --- /dev/null +++ b/system/setup.lua @@ -0,0 +1,14 @@ +term.clear() +term.setCursorPos(1,1) +term.setTextColor(colors.white) + +if fs.exists("/system/skel/README.txt") then + shell.run("copy", "/system/skel/README.txt", "/home") +else + print("[ERROR] Unable to find README.txt...") +end + +print("Welcome to the setup!") + +sleep(3) +shell.run("/system/desktop.lua")
\ No newline at end of file |
