summaryrefslogtreecommitdiffhomepage
path: root/patch/bar_indicators.c
diff options
context:
space:
mode:
authorbakkeby <[email protected]>2020-08-30 10:00:30 +0200
committerbakkeby <[email protected]>2020-08-30 10:00:30 +0200
commit85c99ae8d4dcb0c55a3fa424a4c0adfdfd67965d (patch)
treeb26b715b657969e7886a7fd0ded62b65a59be9f8 /patch/bar_indicators.c
parent1d19f4d309219d82c8a0764568fbc2e52da23344 (diff)
downloaddwm-flexipatch-85c99ae8d4dcb0c55a3fa424a4c0adfdfd67965d.tar.gz
dwm-flexipatch-85c99ae8d4dcb0c55a3fa424a4c0adfdfd67965d.zip
Added slim variants for the bar indicators
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)) {