From 5d92f9fa4c93d2341b5fbc8caa630137077eda81 Mon Sep 17 00:00:00 2001 From: Vincent Bernat Date: Sun, 23 Oct 2022 10:45:45 +0200 Subject: [PATCH] i3-companion: add Thunderbird to exclusive apps --- bin/i3-companion | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/bin/i3-companion b/bin/i3-companion index 2fff319..ec1a54e 100755 --- a/bin/i3-companion +++ b/bin/i3-companion @@ -125,7 +125,13 @@ icons = { application_icons_nomatch = icon(2, "") application_icons_ignore = {"dimmer"} application_icons_alone = {application_icons[k] for k in {"vbeterm"}} -exclusive_apps = {"emacs", "firefox", "chromium-browser", "google-chrome"} +exclusive_apps = { + "emacs", + "firefox", + "chromium-browser", + "google-chrome", + "thunderbird", +} intrusive_apps = {"vbeterm"} logger = logging.getLogger("i3-companion")