Add option to remove splash on startup #10
11
startup.lua
11
startup.lua
@@ -117,6 +117,16 @@ local function splash()
|
||||
term.write(str)
|
||||
end
|
||||
|
||||
local doSplash = true
|
||||
if settings then
|
||||
doSplash = settings.get('opus.show_splash')
|
||||
if doSplash == nil then
|
||||
doSplash = true
|
||||
settings.set('opus.show_splash', true)
|
||||
settings.save('.settings')
|
||||
end
|
||||
end
|
||||
if doSplash then
|
||||
term.clear()
|
||||
splash()
|
||||
|
||||
@@ -135,6 +145,7 @@ while true do
|
||||
break
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
term.clear()
|
||||
term.setCursorPos(1, 1)
|
||||
|
||||
Reference in New Issue
Block a user