change welcome message
This commit is contained in:
@@ -440,11 +440,15 @@ async def index():
|
|||||||
|
|
||||||
def main_gui(args):
|
def main_gui(args):
|
||||||
ELM['filedir'] = args.dir
|
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(
|
ui.run(
|
||||||
host=args.host, port=int(args.port), title=ELM['name'],
|
host=args.host, port=int(args.port), title=ELM['name'],
|
||||||
dark=False,
|
dark=False,
|
||||||
native=False,
|
native=False,
|
||||||
show=False, storage_secret='tempview')
|
show=False,
|
||||||
|
storage_secret='tempview',
|
||||||
|
show_welcome_message=False,
|
||||||
|
)
|
||||||
|
|
||||||
def main(args):
|
def main(args):
|
||||||
return 0
|
return 0
|
||||||
|
|||||||
Reference in New Issue
Block a user