From d918fd8a79bce243a614cd99f74b7f40c639fbe1 Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Mon, 15 Jul 2019 21:57:44 -0400 Subject: Made booting faster and encrypted password --- system/boot.lua | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'system/boot.lua') diff --git a/system/boot.lua b/system/boot.lua index 5418427..c1caace 100644 --- a/system/boot.lua +++ b/system/boot.lua @@ -20,7 +20,7 @@ term.clear() term.setCursorPos(1,1) print("Starting up bits-UI ".. version .."...") -sleep(2) +sleep(1) if term.isColor() then term.setTextColor(colors.green) @@ -31,7 +31,7 @@ else os.shutdown() end -sleep(2) +sleep(1) if fs.exists(desktop) then term.setTextColor(colors.green) @@ -39,11 +39,11 @@ if fs.exists(desktop) then else term.setTextColor(colors.red) print("[ERROR] Desktop cannot be found...") - sleep(3) + sleep(2) os.shutdown() end -sleep(2) +sleep(1) if fs.exists("/home") then term.setTextColor(colors.green) @@ -63,7 +63,7 @@ else print("[OK] Etc directory has been created...") end -sleep(2) +sleep(1) if fs.exists("/home/.config") then term.setTextColor(colors.green) @@ -74,13 +74,13 @@ else term.setTextColor(colors.blue) print("[INFO] Config has not been found!") print("[INFO] You will be sent to the post installation setup...") - sleep(3) + sleep(2) shell.run("/system/post-setup.lua") end -sleep(2) +sleep(1) term.setTextColor(colors.green) print("[DONE] Boot sequence has been completed...") term.setTextColor(colors.white) -sleep(2) +sleep(1) shell.run(desktop) \ No newline at end of file -- cgit v1.2.3