summaryrefslogtreecommitdiff
path: root/dwm.c
diff options
context:
space:
mode:
authorNPScript <nathan@reinerweb.ch>2022-05-01 16:25:57 +0200
committerNPScript <nathan@reinerweb.ch>2022-05-01 16:25:57 +0200
commiteb8e7e09c59d636908170d866bf5bd8418dedb48 (patch)
treebac376897b0f4fbd4c8676632b136eb3290e3a5c /dwm.c
parent3762ba5cb6db5184938d08dbf90e079916076f31 (diff)
add barpadding
Diffstat (limited to 'dwm.c')
-rw-r--r--dwm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dwm.c b/dwm.c
index de24414..200e1f5 100644
--- a/dwm.c
+++ b/dwm.c
@@ -1553,7 +1553,7 @@ setup(void)
if (!drw_fontset_create(drw, fonts, LENGTH(fonts)))
die("no fonts could be loaded.");
lrpad = drw->fonts->h;
- bh = drw->fonts->h + 2;
+ bh = drw->fonts->h + 2 + barpadding;
updategeom();
/* init atoms */
utf8string = XInternAtom(dpy, "UTF8_STRING", False);