From 3268ba41795233bdbd7a52056a3e96e9d78efaf0 Mon Sep 17 00:00:00 2001 From: Sravan Balaji Date: Wed, 1 May 2024 19:58:24 -0400 Subject: [PATCH] Add xfce4-notifyd as a floating window --- README.org | 1 + config.def.h | 1 + 2 files changed, 2 insertions(+) diff --git a/README.org b/README.org index 4ed9c98..61c1f2e 100644 --- a/README.org +++ b/README.org @@ -4329,6 +4329,7 @@ static const Rule rules[] = { RULE(.wintype = WTYPE "TOOLBAR", .isfloating = 1) RULE(.wintype = WTYPE "SPLASH", .isfloating = 1) RULE(.title = "Picture in picture", .isfloating = 1) + RULE(.class = "Xfce4-notifyd", .isfloating = 1) RULE(.class = "Beeper", .tags = 1 << 0) RULE(.class = "Signal", .tags = 1 << 0) RULE(.class = "discord", .tags = 1 << 0) diff --git a/config.def.h b/config.def.h index ca575c4..9657b88 100644 --- a/config.def.h +++ b/config.def.h @@ -474,6 +474,7 @@ static const Rule rules[] = { RULE(.wintype = WTYPE "TOOLBAR", .isfloating = 1) RULE(.wintype = WTYPE "SPLASH", .isfloating = 1) RULE(.title = "Picture in picture", .isfloating = 1) + RULE(.class = "Xfce4-notifyd", .isfloating = 1) RULE(.class = "Beeper", .tags = 1 << 0) RULE(.class = "Signal", .tags = 1 << 0) RULE(.class = "discord", .tags = 1 << 0)