summaryrefslogtreecommitdiff
path: root/dwm.c
diff options
context:
space:
mode:
authorLignum Crucis2026-04-09 23:40:00 -0300
committerLignum Crucis2026-04-09 23:40:00 -0300
commitdad3d01990ad270f63936536fe82f59fcea54d3e (patch)
tree14dda1e716db5c9e9b949b348481fe64f29e7d57 /dwm.c
parenta56335b967a13ef96bab1c8f30e9e4e87d22d0e4 (diff)
patch: bar height
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 685900e..68b3014 100644
--- a/dwm.c
+++ b/dwm.c
@@ -1774,7 +1774,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 + user_bh;
updategeom();
/* init atoms */
utf8string = XInternAtom(dpy, "UTF8_STRING", False);