From 8138c9bf07265bf7cb76ba5ecc7d6fe22f6f1159 Mon Sep 17 00:00:00 2001 From: QC Date: Sat, 16 Feb 2013 18:16:58 +0100 Subject: [PATCH] Filter out i3bar --- simpleswitcher.c | 1 + 1 file changed, 1 insertion(+) diff --git a/simpleswitcher.c b/simpleswitcher.c index 5eb2ce7f..c1b3416c 100644 --- a/simpleswitcher.c +++ b/simpleswitcher.c @@ -920,6 +920,7 @@ void run_switcher(int mode, int fmode) { if ((c = window_client(w))) { + if(config_i3_mode && strncasecmp(c->title, "i3bar", 5) == 0) continue; // final line format unsigned long wmdesktop; char desktop[5]; desktop[0] = 0; char *line = allocate(strlen(c->title) + strlen(c->class) + classfield + 50);