From d20371040e82fcc78db2bc23fc002fa175e025b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E9=80=9A=E6=B4=B2?= Date: Tue, 17 Jun 2025 20:38:10 +0800 Subject: [PATCH] WM (FreeBSD): fix Hyprland version detection --- src/detection/wm/wm_linux.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/detection/wm/wm_linux.c b/src/detection/wm/wm_linux.c index 6d7e7b8f7..1e8870f99 100644 --- a/src/detection/wm/wm_linux.c +++ b/src/detection/wm/wm_linux.c @@ -237,7 +237,7 @@ const char* ffDetectWMVersion(const FFstrbuf* wmName, FFstrbuf* result, FF_MAYBE if (!wmName) return "No WM detected"; - if (ffStrbufEqualS(wmName, "Hyprland")) + if (ffStrbufIgnCaseEqualS(wmName, "Hyprland")) return getHyprland(result); if (ffStrbufEqualS(wmName, "sway"))