From 00fa39aa16d0b2c0c3528ee7425d4b6bb2a98883 Mon Sep 17 00:00:00 2001 From: sheldonmlee Date: Thu, 18 Feb 2021 21:45:04 +0800 Subject: [PATCH] Added autostart patch and changed path. --- dwm.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/dwm.c b/dwm.c index 664c527..aa3f041 100644 --- a/dwm.c +++ b/dwm.c @@ -194,6 +194,7 @@ static void resizeclient(Client *c, int x, int y, int w, int h); static void resizemouse(const Arg *arg); static void restack(Monitor *m); static void run(void); +static void runAutostart(void); static void scan(void); static int sendevent(Client *c, Atom proto); static void sendmon(Client *c, Monitor *m); @@ -1381,6 +1382,12 @@ run(void) handler[ev.type](&ev); /* call handler */ } +void +runAutostart(void) { + system("cd ~/.config/dwm; ./autostart_blocking.sh"); + system("cd ~/.config/dwm; ./autostart.sh &"); +} + void scan(void) { @@ -2145,6 +2152,7 @@ main(int argc, char *argv[]) die("pledge"); #endif /* __OpenBSD__ */ scan(); + runAutostart(); run(); cleanup(); XCloseDisplay(dpy);