From 75fd738a888e77b989f0c56b6e84ecc134a8cb14 Mon Sep 17 00:00:00 2001 From: Alexis Jhon Gaspar Date: Sun, 1 Oct 2023 23:42:38 +0800 Subject: [PATCH] Fix window swallowing for Xmessage --- dwm-flexipatch/config.def.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dwm-flexipatch/config.def.h b/dwm-flexipatch/config.def.h index 5b81356..c645a58 100644 --- a/dwm-flexipatch/config.def.h +++ b/dwm-flexipatch/config.def.h @@ -502,7 +502,7 @@ static const Rule rules[] = { RULE(.wintype = WTYPE "DESKTOP", .unmanaged = 2) RULE(.wintype = WTYPE "DOCK", .unmanaged = 1) RULE(.wintype = WTYPE "DIALOG", .isfloating = 1, .noswallow = 1) - RULE(.class = "Xmessage", .isfloating = 1) + RULE(.class = "Xmessage", .isfloating = 1, .noswallow = 1) RULE(.wintype = WTYPE "UTILITY", .isfloating = 1, .noswallow = 1) RULE(.wintype = WTYPE "TOOLBAR", .isfloating = 1, .noswallow = 1) RULE(.wintype = WTYPE "SPLASH", .isfloating = 1, .noswallow = 1)