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>
This commit is contained in:
Martin Wimpress 2026-01-27 17:44:40 +00:00 committed by Martin Wimpress
parent 25d1f09452
commit eb98ce1160
1 changed files with 2 additions and 2 deletions

View File

@ -1299,8 +1299,8 @@ function configure_display() {
esac
fi;;
macos)
# VGA supports seamless mouse and sane resolutions for macOS guests
DISPLAY_DEVICE="VGA";;
# macOS has native VMware display driver support; aligns with OSX-KVM
DISPLAY_DEVICE="vmware-svga";;
windows|windows-server)
case ${display} in
none|spice) DISPLAY_DEVICE="qxl-vga";;