Add option to remove splash on startup #10

Closed
hugeblank wants to merge 1 commits from show-boot into develop-1.8

View File

@@ -117,22 +117,33 @@ local function splash()
term.write(str) term.write(str)
end end
term.clear() local doSplash = true
splash() if settings then
doSplash = settings.get('opus.show_splash')
local timerId = os.startTimer(1.5) if doSplash == nil then
while true do doSplash = true
local e, id = os.pullEvent() settings.set('opus.show_splash', true)
if e == 'timer' and id == timerId then settings.save('.settings')
break
end end
if e == 'char' then end
bootOption = startupMenu() if doSplash then
if settings then term.clear()
settings.set('opus.boot_option', bootOption) splash()
settings.save('.settings')
local timerId = os.startTimer(1.5)
while true do
local e, id = os.pullEvent()
if e == 'timer' and id == timerId then
break
end
if e == 'char' then
bootOption = startupMenu()
if settings then
settings.set('opus.boot_option', bootOption)
settings.save('.settings')
end
break
end end
break
end end
end end