mirror of
https://github.com/vincentbernat/i3wm-configuration.git
synced 2025-08-03 17:54:31 +02:00
i3-companion: fix detection of intrusive apps
This commit is contained in:
parent
33b63b8eeb
commit
e91e96c77b
1 changed files with 1 additions and 1 deletions
|
@ -420,7 +420,7 @@ async def workspace_exclusive(i3, event):
|
|||
w = event.container
|
||||
|
||||
# Can the current window intrude the workspace?
|
||||
if w.floating in {"auto_on", "user_on"} or w.window_class.lower in intrusive_apps:
|
||||
if w.floating in {"auto_on", "user_on"} or w.window_class.lower() in intrusive_apps:
|
||||
logger.debug("window %s can intrude", w.window_class)
|
||||
return
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue