Eel
Eel copied to clipboard
How do i remove the title bar in Eel?
I want a window that isn't full screen but it doesn't have the title bar like discord or Firefox
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()
You can use zero width unicode character in the html's title tag
code:
<title></title>
its works?