From c6f19a5a2e89abc45343527e77ffd902a8a95772 Mon Sep 17 00:00:00 2001 From: Daniel Weschke Date: Thu, 27 Aug 2026 15:06:57 +0200 Subject: [PATCH] change welcome message --- app.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/app.py b/app.py index 295529a..2cc0407 100644 --- a/app.py +++ b/app.py @@ -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