diff options
author | Vidhu Kant Sharma <vidhukant@vidhukant.com> | 2025-05-10 19:56:13 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <vidhukant@vidhukant.com> | 2025-05-10 19:56:13 +0530 |
commit | 972768c21aae20295bcb91c37bcf95ae3b0262ef (patch) | |
tree | 21d3dcc3a6e54b8b73c82639673a38402aa59e6e /dwm.c | |
parent | 480532692b4f41d2cf990012327e7b47cc2fb3f0 (diff) |
patched dwm-bar-height-6.2.diff
Diffstat (limited to 'dwm.c')
-rw-r--r-- | dwm.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1664,7 +1664,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); |