Add vertical padding on bar

This commit is contained in:
Alex Selimov 2025-05-24 21:34:14 -04:00
parent 5d2fdd0da9
commit 56ddeea9aa
2 changed files with 7 additions and 5 deletions

2
dwm.c
View file

@ -1781,7 +1781,7 @@ void 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 + vertpadbar;
updategeom();
/* init atoms */
utf8string = XInternAtom(dpy, "UTF8_STRING", False);