I want to remove title bar in VLC MEDIA PLAYER without maximized.
Is there anyway to solve this?
I am googling for 5 hours but I can't find the answer.
I want to remove title bar in VLC MEDIA PLAYER without maximized.
Is there anyway to solve this?
I am googling for 5 hours but I can't find the answer.
There is no obvious way to control window decorations (i.e., display of window border and title), except perhaps with the Compiz window manager.
You could still do this with devilspie
or devilspie2
. These are small daemons that monitor the creation of windows, and do something with windows that match rules you created. This may work only on systems running on Xorg. Ubuntu 21.10 and later by default run on Wayland, although one still can switch to the traditional Xorg display server.
For example, following configuration file, ~/.config/devilspie2/vlc.lu
will cause a window with the title "VCL media player" to be undecorated:
if (get_window_name() == "VLC media player") then
undecorate_window();
end
An undecorated window still can be moved if you drag the window while holding the "Windows" key. In standard Ubuntu, this is Super, in other desktop environments, it is sometimes Alt left.