summaryrefslogtreecommitdiff
path: root/dwm.c
diff options
context:
space:
mode:
authorMineralwaterXu <[email protected]>2020-12-01 12:52:09 +0800
committerMineralwaterXu <[email protected]>2020-12-01 12:52:09 +0800
commit05822cfe2683e7907a0870a93be20709e9643a29 (patch)
tree96aa30992dd64695154696b26a33839c51c5c99c /dwm.c
parent69f7e59d0307ee8ad1b11f764893297669d6c446 (diff)
fixed the autostart failure problem
Diffstat (limited to 'dwm.c')
-rw-r--r--dwm.c4
1 files 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