commit 37080090749c62385219da79a0eec5a976a09507
parent e0d86de2c7b594c2f6c2ca7b7d26bc425a5f3c6d
Author: bdmfegys@duck.com <bdmfegys@duck.com>
Date: Tue, 19 Mar 2024 20:48:49 -0400
fix autostart function, revert some changes in finding the autostart folder
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/birdwm.c b/birdwm.c
@@ -1779,7 +1779,7 @@ void runautostart(void) {
}
pathpfx = pathpfx_new;
- if (sprintf(pathpfx, "%s/.config/%s", home, dwmdir) <= 0) {
+ if (sprintf(pathpfx, "%s/.local/share/%s", home, dwmdir) <= 0) {
free(pathpfx);
return;
}