summaryrefslogtreecommitdiffhomepage
path: root/patch/autostart.c
blob: c61ea7fcbb66162fc00031ac1d51c412a7478090 (plain)
1
2
3
4
5
6
7
8
9
10
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
}