I have a small problem and I am working on a small app that uses the python kivy gui framework. All i want is to hide the titlebar of the main window and make the background color transparent. I searched the net intensively but I couldn't find a solution for this.
Does anyone know how to do this?
Thanks
You can disable bar using
kivy.config.Config
. Setfullscreen
asfake
:You can find more configuration options here: http://kivy.org/docs/api-kivy.config.html#available-configuration-tokens For example, to also change position of window:
Unfortunately, I don't know whether it's possible to add transparency.