Eel icon indicating copy to clipboard operation
Eel copied to clipboard

How do i remove the title bar in Eel?

Open PoIygon opened this issue 2 years ago • 3 comments

I want a window that isn't full screen but it doesn't have the title bar like discord or Firefox

PoIygon avatar May 07 '22 05:05 PoIygon

It is not currently supported in eel. the closest you can get to it is kiosk mode in chrome. Or you can write your own webview. I will recommend pywebview for you if you want to write a webview. It is simple to use and has a ton of features . The code you want for pywebview

import eel
import webview

eel.init('web')

# your code.....

eel.start('index.html', mode=None, block=False)

webview.create_window('Title', 'http://localhost/index.html:8000', frameless=True)

webview.start()

vv2006-mc avatar Jun 26 '22 15:06 vv2006-mc

You can use zero width unicode character in the html's title tag code: <title>​</title>

uday-kiran-m avatar Oct 25 '22 12:10 uday-kiran-m

its works?

StephenBlack25565 avatar Feb 07 '23 14:02 StephenBlack25565