mirror of
https://github.com/vincentbernat/i3wm-configuration.git
synced 2025-06-22 09:53:28 +02:00
i3-companion: only ignore windows that are both sticky and floating
This commit is contained in:
parent
6bdf38b507
commit
ac9e1c766d
1 changed files with 1 additions and 1 deletions
|
@ -363,7 +363,7 @@ async def workspace_rename(i3, event):
|
||||||
for workspace in workspaces:
|
for workspace in workspaces:
|
||||||
icons = set()
|
icons = set()
|
||||||
for window in workspace.leaves():
|
for window in workspace.leaves():
|
||||||
if window.sticky:
|
if window.sticky and window.floating in {"auto_on", "user_on"}:
|
||||||
continue
|
continue
|
||||||
cls = (window.window_class or "").lower()
|
cls = (window.window_class or "").lower()
|
||||||
if cls in application_icons_ignore:
|
if cls in application_icons_ignore:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue