summaryrefslogtreecommitdiff
path: root/dwm.c
diff options
context:
space:
mode:
authortsxv478 <atvx717@infraredcombat.xyz>2023-02-14 17:40:59 +0300
committertsxv478 <atvx717@infraredcombat.xyz>2023-02-14 17:40:59 +0300
commita6333852315add8777d6d8a93d3f06e9bb4517e9 (patch)
tree6b29d08858956adcfd7936943c2f38999b4c09d8 /dwm.c
parent8812d3b1cd26716edca4256906215fcc9c5b708e (diff)
bar height variable
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 046b8bf..0e9bc70 100644
--- a/dwm.c
+++ b/dwm.c
@@ -1819,7 +1819,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 + barheight;
updategeom();
/* init atoms */
utf8string = XInternAtom(dpy, "UTF8_STRING", False);