I have installed Ubuntu on my windows via wsl. I have followed this guide: https://medium.com/geekculture/how-to-install-the-ubuntu-desktop-with-the-graphical-user-interface-in-wsl2-71f4b78431a4
Currently the GUI is being opened in frame, but i want to make it open in full screen mode. Is there any chance i can do it?
screenshot of VcXsrvHere is the script to launch VcXsrv :
' define variablesdim application_object, shell_object, userprofile, command_object, standard_output_string' create application objectset application_object = createobject("shell.application")' create shell objectset shell_object = createobject("wscript.shell")' store environment variableusername = shell_object.expandenvironmentstrings("%username%")' run powershell in the backgroundapplication_object.shellexecute "powershell", "-file c:\users\" & username & "\.ubuntu\scripts\reload_vcxsrv.ps1", "", "", 0' wait for powershell script to completewscript.sleep 3000' create command objectset command_object = shell_object.exec("wsl genie --is-in-bottle")' store standard outputstandard_output = command_object.stdout.readall' execute contents if shell is inside the genie containerif instr(standard_output, "inside") > 0 then' run bash script shell_object.run "bash /mnt/c/users/" & username & "/.ubuntu/scripts/start_desktop.sh", 0' execute contents if shell is outside the genie container else ' run bash script shell_object.run "wsl genie -c bash /mnt/c/users/" & username & "/.ubuntu/scripts/start_desktop.sh", 0end if