python-eel / Eel

A little Python library for making simple Electron-like HTML/JS GUI apps
MIT License
6.44k stars 587 forks source link

How can I make my app borderless #523

Open WiroWorks-zz opened 3 years ago

WiroWorks-zz commented 3 years ago

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 ?

DTGillespie commented 2 years ago

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'])