From ac9e1c766d9b9c0083cedc0314e3e34ee56326fa Mon Sep 17 00:00:00 2001 From: Vincent Bernat Date: Tue, 5 Mar 2024 08:05:31 +0100 Subject: [PATCH] i3-companion: only ignore windows that are both sticky and floating --- bin/i3-companion | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/i3-companion b/bin/i3-companion index f8b8c3f..288a499 100755 --- a/bin/i3-companion +++ b/bin/i3-companion @@ -363,7 +363,7 @@ async def workspace_rename(i3, event): for workspace in workspaces: icons = set() for window in workspace.leaves(): - if window.sticky: + if window.sticky and window.floating in {"auto_on", "user_on"}: continue cls = (window.window_class or "").lower() if cls in application_icons_ignore: