dwm/patch/autostart.c

10 lines
201 B
C
Raw Normal View History

2019-09-06 23:37:30 +02:00
void
runAutostart(void) {
int ret;
ret = system("cd ~/.config/dwm; ./autostart_blocking.sh");
ret = system("cd ~/.config/dwm; ./autostart.sh &");
if (ret); // ignore, hide compilation warnings
}