diff options
| author | Alee <Alee14498@gmail.com> | 2019-03-04 20:35:50 -0500 |
|---|---|---|
| committer | Alee <Alee14498@gmail.com> | 2019-03-04 20:35:50 -0500 |
| commit | 7db6511b71743d64b17dd0a63e12674489d37c99 (patch) | |
| tree | 54a367ce1baebc887c5f247ac80006bd9a040eaa | |
| parent | f3d57ee3a0e94076ad9454468e42140ff7ccdaed (diff) | |
| download | bits-UI-7db6511b71743d64b17dd0a63e12674489d37c99.tar.gz bits-UI-7db6511b71743d64b17dd0a63e12674489d37c99.tar.bz2 bits-UI-7db6511b71743d64b17dd0a63e12674489d37c99.zip | |
Removed spacing
| -rw-r--r-- | startup | 20 |
1 files changed, 10 insertions, 10 deletions
@@ -9,9 +9,9 @@ print("Starting up bits-UI ".. version .."...") sleep(3) if term.isColor() then - print("[ OK ] Advanced Computer is detected...") + print("[OK] Advanced Computer is detected...") else - print("[ ERROR ] You need a advanced computer in order to make the UI functional...") + print("[ERROR] You need a advanced computer in order to make the UI functional...") sleep(3) os.shutdown() end @@ -19,9 +19,9 @@ end sleep(3) if fs.exists(desktop) then - print("[ OK ] Desktop has been found...") + print("[OK] Desktop has been found...") else - print("[ ERROR ] Desktop cannot be found...") + print("[ERROR] Desktop cannot be found...") sleep(3) os.shutdown() end @@ -29,27 +29,27 @@ end sleep(3) if fs.exists("/home") then - print("[ OK ] Home has been found...") + print("[OK] Home has been found...") else fs.makeDir("/home") - print("[ OK ] Home directory has been created...") + print("[OK] Home directory has been created...") end sleep(3) if fs.exists("/system/bitUI.config") then - print("[ OK ] Config has been found...") + print("[OK] Config has been found...") else file = io.open("/system/bitUI.config", "w") file:close() - print("[ INFO ] Config has not been found!") - print("[ INFO ] You will be sent to the OOBE setup...") + print("[INFO] Config has not been found!") + print("[INFO] You will be sent to the OOBE setup...") end sleep(3) -print("[ INFO ] Boot sequence is completed...") +print("[DONE] Boot sequence is completed...") sleep(3) shell.run(desktop)
\ No newline at end of file |
