1
0
mirror of https://github.com/kepler155c/opus synced 2024-06-16 10:19:59 +00:00

Add option to remove splash on startup

Adds the setting option 'opus.show_splash'. By default it is set to true. When set to false opus will immediately boot without showing the splash screen. Fairly straightforward.
This commit is contained in:
hugeblank 2019-05-15 11:31:33 -07:00
parent 43163053a5
commit 118932c0b5

View File

@ -117,6 +117,16 @@ local function splash()
term.write(str) term.write(str)
end 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() term.clear()
splash() splash()
@ -135,6 +145,7 @@ while true do
break break
end end
end end
end
term.clear() term.clear()
term.setCursorPos(1, 1) term.setCursorPos(1, 1)