dwm
dynamic window manager
git clone https://9o.is/git/dwm.git
commit 7b50e933e52ee7c5a503868f5f3067b052437bf4 parent 1fadbb4d890bcf7e602a691eb7a341231dae614a Author: Jul <jul@9o.is> Date: Sun, 1 Feb 2026 11:03:18 -0500 set default status text to empty string Diffstat:
| M | dwm.c | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dwm.c b/dwm.c @@ -2088,7 +2088,7 @@ void updatestatus(void) { if (!gettextprop(root, XA_WM_NAME, stext, sizeof(stext))) - strcpy(stext, "dwm-"VERSION); + strcpy(stext, ""); drawbar(selmon); }