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