I have a python daemon process which periodically starts VLC player in fullscreen mode, plays some video and stops it:
import vlc
...
player = vlc.MediaPlayer()
player.set_fullscreen(True)
...
player.play()
...
player.stop()
...
But if I open or focus any other window after I start my script, VLC player pops up in fullscreen mode but don't go over this new top-level window. There is no such problem for Linux Mint. VLC in fullscreen overwrite anything, no matter what.
Is there any solution or workaround for such problem?