change welcome message

This commit is contained in:
Daniel Weschke
2026-08-27 15:06:57 +02:00
parent 76a7acf498
commit c6f19a5a2e
+5 -1
View File
@@ -440,11 +440,15 @@ async def index():
def main_gui(args):
ELM['filedir'] = args.dir
app.on_startup(lambda: print(f'Visit the tempview app on this URL: http://{os.uname().nodename}:{args.port}')) # app.urls
ui.run(
host=args.host, port=int(args.port), title=ELM['name'],
dark=False,
native=False,
show=False, storage_secret='tempview')
show=False,
storage_secret='tempview',
show_welcome_message=False,
)
def main(args):
return 0