From e91e96c77b892120d65a44f5a76d169bc63d0027 Mon Sep 17 00:00:00 2001 From: Vincent Bernat Date: Mon, 9 Aug 2021 16:18:28 +0200 Subject: [PATCH] i3-companion: fix detection of intrusive apps --- bin/i3-companion | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/i3-companion b/bin/i3-companion index 908d84a..cf2474d 100755 --- a/bin/i3-companion +++ b/bin/i3-companion @@ -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