dwm

my customized dwm build
git clone git://git.hanetzok.net/dwm
Log | Files | Refs | README | LICENSE

commit 31e923983e8bc1072e14f372a051ab794dfd2192
parent 2fa46b9dd6ea3c7f73a57443cf5153e81b775f32
Author: Markus Hanetzok <markus@hanetzok.net>
Date:   Wed, 29 Oct 2025 21:22:31 +0100

call xrdb() after setup

xrdb patch doesn't apply Xresources on startup, xdotool is unreliable,
so we call the xrdb() function after setup()

Diffstat:
Mdwm.c | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/dwm.c b/dwm.c @@ -2694,6 +2694,7 @@ main(int argc, char *argv[]) XrmInitialize(); loadxrdb(); setup(); + xrdb(NULL); #ifdef __OpenBSD__ if (pledge("stdio rpath proc exec ps", NULL) == -1) die("pledge");