comparison util.c @ 34:cd30cce52b78

added logo+description
author Anselm R. Garbe <garbeam@wmii.de>
date Thu, 13 Jul 2006 09:32:22 +0200
parents e90449e03167
children 989178822938
comparison
equal deleted inserted replaced
33:e90449e03167 34:cd30cce52b78
83 if(fork() == 0) { 83 if(fork() == 0) {
84 if(dpy) 84 if(dpy)
85 close(ConnectionNumber(dpy)); 85 close(ConnectionNumber(dpy));
86 setsid(); 86 setsid();
87 execvp(argv[0], argv); 87 execvp(argv[0], argv);
88 fprintf(stderr, "gridwm: execvp %s", argv[0]); 88 fprintf(stderr, "dwm: execvp %s", argv[0]);
89 perror(" failed"); 89 perror(" failed");
90 } 90 }
91 exit (0); 91 exit (0);
92 } 92 }
93 wait(0); 93 wait(0);