Adding bar_height patch

This commit is contained in:
bakkeby
2020-06-21 20:04:56 +02:00
parent 92a63debe5
commit c3d368f193
4 changed files with 16 additions and 1 deletions

4
dwm.c
View File

@ -3103,7 +3103,11 @@ setup(void)
bh = drw->font->h + 2;
#else
lrpad = drw->fonts->h;
#if BAR_HEIGHT_PATCH
bh = bar_height ? bar_height : drw->fonts->h + 2;
#else
bh = drw->fonts->h + 2;
#endif // BAR_HEIGHT_PATCH
#endif // STATUSPADDING_PATCH
updategeom();
#if BARPADDING_PATCH