Tôi đã cài đặt Ubuntu trên windows của mình qua wsl. Tôi đã làm theo hướng dẫn này: https://medium.com/geekcARM/how-to-install-the-ubuntu-desktop-with-the-graphical-user-interface-in-wsl2-71f4b78431a4
Hiện tại GUI đang được mở trong khung, nhưng tôi muốn mở nó ở chế độ toàn màn hình. Có bất kỳ cơ hội tôi có thể làm điều đó?
ảnh chụp màn hình của VcXsrv
Đây là kịch bản để khởi chạy VcXsrv:
' định nghĩa các biến
làm mờ application_object, shell_object, userprofile, command_object, standard_output_string
' tạo đối tượng ứng dụng
đặt application_object = createobject("shell.application")
' tạo đối tượng vỏ
đặt shell_object = createobject("wscript.shell")
' lưu trữ biến môi trường
tên người dùng = shell_object.expandenvironmentstrings("%username%")
' chạy powershell trong nền
application_object.shellexecute "powershell", "-file c:\users\" & tên người dùng & "\.ubuntu\scripts\reload_vcxsrv.ps1", "", "", 0
' đợi tập lệnh powershell hoàn thành
wscript.sleep 3000
' tạo đối tượng lệnh
đặt command_object = shell_object.exec("wsl genie --is-in-bottle")
' lưu trữ đầu ra tiêu chuẩn
standard_output = command_object.stdout.readall
' thực thi nội dung nếu vỏ nằm trong thùng chứa genie
nếu instr(standard_output, "inside") > 0 thì
' chạy tập lệnh bash
shell_object.run "bash /mnt/c/users/" & tên người dùng & "/.ubuntu/scripts/start_desktop.sh", 0
' thực thi nội dung nếu shell nằm ngoài vùng chứa genie
khác
' chạy tập lệnh bash
shell_object.run "wsl genie -c bash /mnt/c/users/" & tên người dùng & "/.ubuntu/scripts/start_desktop.sh", 0
kết thúc nếu