dwm - barheight plugin.

This commit is contained in:
Bartek Stalewski 2022-03-31 23:04:01 +02:00
parent a94794b949
commit 523f556506
4 changed files with 29 additions and 2 deletions

View file

@ -1981,7 +1981,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 = user_bh ? user_bh : drw->fonts->h + 2;
updategeom();
/* init atoms */
utf8string = XInternAtom(dpy, "UTF8_STRING", False);