commit 035d0e663f865a83a1d3795798ce9e6067ce893f
parent 38d13fde2d72daf8be90cc1939597cfbe5b5b426
Author: Miles Alan <m@milesalan.com>
Date: Sat, 22 Aug 2020 16:32:33 -0500
Ignore drawing clientindicators in bar for svkbd
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dwm.c b/dwm.c
@@ -976,7 +976,7 @@ drawbar(Monitor *m)
drw_text(drw, x, 0, w, bh, lrpad / 2, tags[i], urg & 1 << i);
for (c = m->clients; c; c = c->next) {
- if (c->tags & (1 << i)) {
+ if (c->tags & (1 << i) && !c->iskbd) {
drw_rect(drw, x, 1 + (indn * 2), selmon->sel == c ? 6 : 1, 1, 1, urg & 1 << i);
indn++;
}