From 434ce7aeb49bb9b42c25d25d0794918aeeb14b23 Mon Sep 17 00:00:00 2001 From: danjujan <44864658+danjujan@users.noreply.github.com> Date: Sun, 17 Nov 2024 13:33:19 +0100 Subject: [PATCH] vms/qemu: fix opengl detection --- pkgs/clan-cli/clan_cli/vms/qemu.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/clan-cli/clan_cli/vms/qemu.py b/pkgs/clan-cli/clan_cli/vms/qemu.py index 5886c1556..f18f11e0f 100644 --- a/pkgs/clan-cli/clan_cli/vms/qemu.py +++ b/pkgs/clan-cli/clan_cli/vms/qemu.py @@ -42,7 +42,7 @@ def graphics_options(vm: VmConfig) -> GraphicOptions: #"-chardev", "socket,id=vgpu,path=/tmp/vgpu.sock", ], cid) # fmt: on - if not Path("/run/opengl-driver").exists(): + if Path("/run/opengl-driver").exists(): display_options = [ "-vga", "none",