From 3e13eb0a455dcf7e4f25c522b028826930d84aaa Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Mon, 16 Nov 2020 17:15:36 -0500 Subject: You can disable that message from code --- startup.lua | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/startup.lua b/startup.lua index 81b8daa..ffd6a54 100644 --- a/startup.lua +++ b/startup.lua @@ -1,4 +1,7 @@ +local welcomeMessage = true + if fs.exists("/boot/ccboot/boot.lua") then + if welcomeMessage == true then term.clear() term.setCursorPos(1,1) term.setBackgroundColor(colours.white) @@ -8,6 +11,9 @@ if fs.exists("/boot/ccboot/boot.lua") then term.setBackgroundColor(colours.black) term.setTextColor(colours.white) shell.run("boot/ccboot/boot.lua"); + else + shell.run("boot/ccboot/boot.lua"); + end else term.clear() term.setCursorPos(1,1) -- cgit v1.2.3