Skip to content

Commit eb98ce1

Browse files
committed
fix(quickemu): use vmware-svga display for macOS guests
- Replace previous VGA default with vmware-svga to align with macOS native VMware display driver and OSX-KVM expectations - Improve resolution handling and mouse integration for macOS VMs Signed-off-by: Martin Wimpress <martin@wimpress.org>
1 parent 25d1f09 commit eb98ce1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

quickemu

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1299,8 +1299,8 @@ function configure_display() {
12991299
esac
13001300
fi;;
13011301
macos)
1302-
# VGA supports seamless mouse and sane resolutions for macOS guests
1303-
DISPLAY_DEVICE="VGA";;
1302+
# macOS has native VMware display driver support; aligns with OSX-KVM
1303+
DISPLAY_DEVICE="vmware-svga";;
13041304
windows|windows-server)
13051305
case ${display} in
13061306
none|spice) DISPLAY_DEVICE="qxl-vga";;

0 commit comments

Comments
 (0)