Add statuspadding patch

This commit is contained in:
2024-05-31 19:16:24 +05:00
parent 645882cc94
commit 5d304c99af
6 changed files with 8 additions and 3 deletions

4
dwm.c
View File

@@ -1704,8 +1704,8 @@ setup(void)
drw = drw_create(dpy, screen, root, sw, sh);
if (!drw_fontset_create(drw, fonts, LENGTH(fonts)))
die("no fonts could be loaded.");
lrpad = drw->fonts->h;
bh = drw->fonts->h + 2;
lrpad = drw->fonts->h + horizpadbar;
bh = drw->fonts->h + vertpadbar;
updategeom();
/* init atoms */
utf8string = XInternAtom(dpy, "UTF8_STRING", False);