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

remove window frame #420

Open redboxstudio opened 3 years ago

redboxstudio commented 3 years ago

https://github.com/samuelhwilliams/Eel/issues/128

Hello in 2019 it was written that this will be added, but I did not find this in the documentation, how can I disable the window frame for my application

JeswinSunsi commented 3 years ago

https://github.com/ChrisKnott/Eel/issues/128#issuecomment-496274814

This might help? You still cannot make border-less windows with the default mode, I guess.

mastronicola commented 3 years ago

You can start chrome in "kiosk" mode Example below:

eel.start('index.html', mode='chrome', port=0, cmdline_args=['--start-fullscreen', '--incognito', '--disable-extensions', '--kiosk'])

redboxstudio commented 3 years ago

image this not work for me

Avaray commented 3 years ago

Just set --user-data-dir path to different than original data dir of Chrome. Then you will be able to run your App in separated instance of Chrome and your launch parameters will work.

EnemyBot3 commented 1 year ago

@Avaray can u please explain. Having the same issue

Avaray commented 1 year ago

@Avaray can u please explain. Having the same issue

Check Overriding the User Data Directory