]> git.wh0rd.org - home.git/blob - X-life-line.c
nanorc: update bindings
[home.git] / X-life-line.c
1 /* Application to have X launch so I can restart window manager
2 * without having to restart X (and thus all my apps).
3 */
4 #include <signal.h>
5 #include <unistd.h>
6 int main(int argc, char *argv[])
7 {
8 signal(SIGCHLD, SIG_IGN);
9 while (1)
10 sleep(3600);
11 return 0;
12 }