From 415139d20734b768f8acb1a4aec307f47df0f418 Mon Sep 17 00:00:00 2001 From: Muhammad Nauman Raza Date: Sun, 24 Mar 2024 20:28:50 +0000 Subject: [PATCH] hotfix: change the value shown on Windows for the WM --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 6636039..b811ea6 100644 --- a/src/main.rs +++ b/src/main.rs @@ -45,7 +45,7 @@ fn main() { let wm: String; if cfg!(windows) { - wm = "Aero".to_string(); + wm = "DWM".to_string(); } else if cfg!(unix) { let xdg_current_desktop = var("XDG_CURRENT_DESKTOP"); let desktop = desktop_env().to_string();