aboutsummaryrefslogtreecommitdiff
path: root/system/setup.lua
blob: 644d0ed48c22364b21cabf9ad2c49d600eb7e683 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
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")