From 9104d89a94fc217a02757c865dde2115c8291f8b Mon Sep 17 00:00:00 2001 From: Sravan Balaji Date: Wed, 31 May 2023 20:37:55 -0400 Subject: [PATCH] Add Window Rule for Beeper --- README.org | 1 + config.def.h | 1 + 2 files changed, 2 insertions(+) diff --git a/README.org b/README.org index 1646be8..81cced8 100644 --- a/README.org +++ b/README.org @@ -4179,6 +4179,7 @@ static const Rule rules[] = { RULE(.wintype = WTYPE "SPLASH", .isfloating = 1) RULE(.title = "Picture in picture", .isfloating = 1) RULE(.class = "Ferdium", .tags = 1 << 0) + RULE(.class = "Beeper", .tags = 1 << 0) RULE(.class = "Signal", .tags = 1 << 0) RULE(.class = "discord", .tags = 1 << 0) RULE(.class = "notion-app-enhanced", .tags = 1 << 1) diff --git a/config.def.h b/config.def.h index 666ce78..4b170cd 100644 --- a/config.def.h +++ b/config.def.h @@ -468,6 +468,7 @@ static const Rule rules[] = { RULE(.wintype = WTYPE "SPLASH", .isfloating = 1) RULE(.title = "Picture in picture", .isfloating = 1) RULE(.class = "Ferdium", .tags = 1 << 0) + RULE(.class = "Beeper", .tags = 1 << 0) RULE(.class = "Signal", .tags = 1 << 0) RULE(.class = "discord", .tags = 1 << 0) RULE(.class = "notion-app-enhanced", .tags = 1 << 1)