From 4bd60d8c1ee0a40341e73ad7b2ed3fe01f160721 Mon Sep 17 00:00:00 2001 From: Martin Wimpress Date: Tue, 27 Jan 2026 17:44:40 +0000 Subject: [PATCH] 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 --- quickemu | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/quickemu b/quickemu index 65951f01b1..53a6f9ce08 100755 --- a/quickemu +++ b/quickemu @@ -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";;