Eel
Eel copied to clipboard
How can I make my app borderless
Describe the problem Hello I want to make my application borderless when I turned into my app a exe it How can I do it ?
It depends on the browser that you are using, but for Chrome; you need to initialize Kiosk mode by passing cmdline_args=['--kiosk'] as an argument in the eel.start() method. Like so—
eel.start('index.html', mode='chrome', cmdline_args=['--kiosk'])