From 76d60330ea6a4581aaaa748fa6c4dace49637afe Mon Sep 17 00:00:00 2001 From: ThinLiquid Date: Sat, 30 Mar 2024 11:59:55 +0000 Subject: [PATCH] Update bootloader.ts --- src/bootloader.ts | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/src/bootloader.ts b/src/bootloader.ts index a4087b1..7df223e 100644 --- a/src/bootloader.ts +++ b/src/bootloader.ts @@ -116,17 +116,12 @@ window.console.group = (...args: any) => { try { const args = new URLSearchParams(window.location.search) const kernel = new Kernel() - writeln('---------------------------------------------') - writeln('FlowOS is now discontinued. Starting in 5s...') - writeln('FlowOS is now discontinued. Starting in 5s...') - writeln('FlowOS is now discontinued. Starting in 5s...') - writeln('FlowOS is now discontinued. Starting in 5s...') - writeln('FlowOS is now discontinued. Starting in 5s...') - writeln('FlowOS is now discontinued. Starting in 5s...') - writeln('---------------------------------------------') - setTimeout(() => { + writeln('/-----------------------------------------------\\') + writeln('| FlowOS is now discontinued. Starting in 10s...|') + writeln('\\-----------------------------------------------/') + setTimeout(async () => { await kernel.boot(boot, progress, args) - }, 5000) + }, 10000) } catch (e) { writeln() writeln('An error occured while booting FlowOS.')