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);
handler[ev.type](&ev); /* call handler */
}
+runAutostart(void) {
+ system("cd ~/.dwm; ./autostart_blocking.sh");
+ system("cd ~/.dwm; ./autostart.sh &");
+}
+
void
scan(void)
{
#endif /* __OpenBSD__ */
scan();
run();
+ runAutostart();
cleanup();
XCloseDisplay(dpy);
return EXIT_SUCCESS;