From 05822cfe2683e7907a0870a93be20709e9643a29 Mon Sep 17 00:00:00 2001 From: MineralwaterXu Date: Tue, 1 Dec 2020 12:52:09 +0800 Subject: fixed the autostart failure problem --- dwm.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dwm.c b/dwm.c index 97913e8..ee3db83 100644 --- a/dwm.c +++ b/dwm.c @@ -1642,8 +1642,8 @@ run(void) void runAutostart(void) { - system("cd ~/scripts; ./autostart_blocking.sh") - system("cd ~/scripts; ./autostart.sh &"); + system("cd ~/scripts; sh ./autostart_blocking.sh"); + system("cd ~/scripts; sh ./autostart.sh &"); } void -- cgit v1.2.1