From 15db2c62982e60ddca7ff40ee1c1ad499c88a0dd Mon Sep 17 00:00:00 2001 From: Sravan Balaji Date: Wed, 1 May 2024 20:39:15 -0400 Subject: [PATCH] Attempt to fix unmanaged window rule not working --- README.org | 2 +- config.def.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.org b/README.org index 80c55e4..5735c26 100644 --- a/README.org +++ b/README.org @@ -4326,8 +4326,8 @@ static const Rule rules[] = { RULE(.wintype = WTYPE "UTILITY", .isfloating = 1) RULE(.wintype = WTYPE "TOOLBAR", .isfloating = 1) RULE(.wintype = WTYPE "SPLASH", .isfloating = 1) + RULE(.wintype = WTYPE "NOTIFICATION", .unmanaged = 1) // 1 - the window will be placed above all other windows RULE(.title = "Picture in picture", .isfloating = 1) - RULE(.class = "Xfce4-notifyd", .unmanaged = 1) // 1 - the window will be placed above all other windows 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 eef9b68..890a123 100644 --- a/config.def.h +++ b/config.def.h @@ -473,8 +473,8 @@ static const Rule rules[] = { RULE(.wintype = WTYPE "UTILITY", .isfloating = 1) RULE(.wintype = WTYPE "TOOLBAR", .isfloating = 1) RULE(.wintype = WTYPE "SPLASH", .isfloating = 1) + RULE(.wintype = WTYPE "NOTIFICATION", .unmanaged = 1) // 1 - the window will be placed above all other windows RULE(.title = "Picture in picture", .isfloating = 1) - RULE(.class = "Xfce4-notifyd", .unmanaged = 1) // 1 - the window will be placed above all other windows RULE(.class = "Beeper", .tags = 1 << 0) RULE(.class = "Signal", .tags = 1 << 0) RULE(.class = "discord", .tags = 1 << 0)