diff options
| author | Andrew Lee <alee14498@gmail.com> | 2019-03-05 19:26:59 -0500 |
|---|---|---|
| committer | Andrew Lee <alee14498@gmail.com> | 2019-03-05 19:26:59 -0500 |
| commit | a18407bdb9c87ac970418cd625abe38f550ab45c (patch) | |
| tree | cb40abeaef3b81dcd1cbf23304e80acf0445aed2 /system/boot.lua | |
| parent | 84a82712e4e3bd6826e572e63accc0800992eb4b (diff) | |
| download | bits-UI-a18407bdb9c87ac970418cd625abe38f550ab45c.tar.gz bits-UI-a18407bdb9c87ac970418cd625abe38f550ab45c.tar.bz2 bits-UI-a18407bdb9c87ac970418cd625abe38f550ab45c.zip | |
Added a bunch of stuff
Diffstat (limited to 'system/boot.lua')
| -rw-r--r-- | system/boot.lua | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/system/boot.lua b/system/boot.lua index 3061d57..c25fae2 100644 --- a/system/boot.lua +++ b/system/boot.lua @@ -1,5 +1,17 @@ +--[[ + bits-UI Boot: A boot script for bits-UI. + Copyright (C) 2019 Alee14 --- bits-UI: An operating system for ComputerCraft. Licensed with GPL-3.0. + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. +]]-- local version = "1.0 Alpha 2" local desktop = "/system/desktop.lua" @@ -53,6 +65,8 @@ else term.setTextColor(colors.blue) print("[INFO] Config has not been found!") print("[INFO] You will be sent to the OOBE setup...") + sleep(3) + shell.run("/system/setup.lua") end sleep(3) |
