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)