summaryrefslogtreecommitdiffhomepage
path: root/patch/bar_indicators.c
diff options
context:
space:
mode:
Diffstat (limited to 'patch/bar_indicators.c')
-rw-r--r--patch/bar_indicators.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/patch/bar_indicators.c b/patch/bar_indicators.c
index 92741b6..676485f 100644
--- a/patch/bar_indicators.c
+++ b/patch/bar_indicators.c
@@ -32,9 +32,15 @@ drawindicator(Monitor *m, Client *c, unsigned int occ, int x, int w, unsigned in
case INDICATOR_TOP_BAR:
drw_rect(drw, x + boxw, 0, w - ( 2 * boxw + 1), boxw/2, filled, invert);
break;
+ case INDICATOR_TOP_BAR_SLIM:
+ drw_rect(drw, x + boxw, 0, w - ( 2 * boxw + 1), 1, filled, invert);
+ break;
case INDICATOR_BOTTOM_BAR:
drw_rect(drw, x + boxw, bh - boxw/2, w - ( 2 * boxw + 1), boxw/2, 1, invert);
break;
+ case INDICATOR_BOTTOM_BAR_SLIM:
+ drw_rect(drw, x + boxw, bh - boxw/2, w - ( 2 * boxw + 1), 1, 1, invert);
+ break;
case INDICATOR_CLIENT_DOTS:
for (c = m->clients; c; c = c->next) {
if (c->tags & (1 << tag)) {