summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dwm/config.def.h2
-rw-r--r--dwm/dwm.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/dwm/config.def.h b/dwm/config.def.h
index 6ceabc9..077264e 100644
--- a/dwm/config.def.h
+++ b/dwm/config.def.h
@@ -116,7 +116,7 @@ static Sp scratchpads[] = {
};
/* tagging */
-static const char *tags[] = { "", "", "", "󰝚", "", "󰧮", "󱇤", "", "󰭹" };
+static const char *tags[] = { "", "", "", "", "", "󱔗", "", "", "󰭹" };
static const char *tagsalt[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" };
static char *tagsel[][2] = {
{ "#f8f8f2", "#005577" },
diff --git a/dwm/dwm.c b/dwm/dwm.c
index 594ffe7..6042664 100644
--- a/dwm/dwm.c
+++ b/dwm/dwm.c
@@ -1191,7 +1191,7 @@ drawbar(Monitor *m)
drw_setscheme(drw, (m->tagset[m->seltags] & 1 << i ? tagscheme[i] : scheme[SchemeNorm]));
else
drw_setscheme(drw, scheme[m->tagset[m->seltags] & 1 << i ? SchemeInv : SchemeTagsNorm]);
- drw_text(drw, x, 0, w,(selmon->alttag ? bh + 2 : bh), wdelta + lrpad / 2, (selmon->alttag ? tagsalt[i] : masterclientontag[i]), urg & 1 << i);
+ drw_text(drw, x, 0, w,(selmon->alttag ? bh : bh + 2), wdelta - 2 + lrpad / 2, (selmon->alttag ? tagsalt[i] : masterclientontag[i]), urg & 1 << i);
x += w;
}
}