commit 27eb7d17b213a5671e2783ff3010ee28674b977d
parent b1c6936c7ceff28904980c9a6cf50ff66da831a9
Author: grouse <bdmfegys@duck.com>
Date: Sun, 25 Feb 2024 13:54:59 -0500
switch autostart dir from /home/tetraonini/.dwm to /home/tetraonini/.config/dwm in dwm.c
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dwm.c b/dwm.c
@@ -1779,7 +1779,7 @@ void runautostart(void) {
}
pathpfx = pathpfx_new;
- if (sprintf(pathpfx, "%s/.%s", home, dwmdir) <= 0) {
+ if (sprintf(pathpfx, "%s/.config/%s", home, dwmdir) <= 0) {
free(pathpfx);
return;
}