Today I learned how to enable the full screen mode for VMs in #QubesOS. It is surprisingly easy.
Especially since i thought it was impossible. Well, now I can watch stuff in full screen on my Laptop again, I guess that is a win.

You just have to open a Terminal in Dom0, and enter:

sudo nano /etc/qubes/guid.conf

That will open the nano text editor. There you will have to scroll down to:

# most of setting can be set per-VM basis

VM {
};

Now you add the following lines after "VM{" :

Your_VM_Name: {
allow_fullscreen = true;
};

Than you restart the VM and watch your movies in full Screen.

Just make sure you have really left the full screen mode before you enter any sensitive information afterwards.

https://www.qubes-os.org/doc/full-screen-mode/

Full Screen Mode

Enabling Full Screen Mode for select VMs What is full screen mode? Normally Qubes GUI virtualization daemon restricts the VM from “owning” the full screen, ensuring that there are always clearly marked decorations drawn by the trusted Window Manager around each of the VMs window. This a...

@qubesnoob Note: Regardless of this setting, you can always put a window into fullscreen mode in Xfce4 using the trusted window manager by right-clicking on a window’s title bar and selecting “Fullscreen”. This functionality should still be considered safe, since a VM window still can’t voluntarily enter fullscreen mode. […] To exit fullscreen mode from here, press alt + space to bring up the title bar menu again, then select “Leave Fullscreen”. https://www.qubes-os.org/doc/config-files/
Config Files

Configuration Files Qubes-specific VM config files These files are placed in /rw, which survives a VM restart. That way, they can be used to customize a single VM instead of all VMs based on the same template. The scripts here all run as root. /rw/config/rc.local - script runs at VM sta...

@mastor Wow. That is a far more useful solution than mine. Thank you very much!