X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=openbox%2Fopenbox.c;h=017eb184115bdd3231634269fcdd34380811f8c5;hb=bf707e7240bbf86be7628c28319d463847738671;hp=9f90a9e01e729e7a2a1d2e149c75ac2819ae5946;hpb=648c55b829e09c66222a9bbf08d10434622feae2;p=chaz%2Fopenbox diff --git a/openbox/openbox.c b/openbox/openbox.c index 9f90a9e0..017eb184 100644 --- a/openbox/openbox.c +++ b/openbox/openbox.c @@ -35,6 +35,9 @@ #ifdef HAVE_LOCALE_H # include #endif +#ifdef HAVE_UNISTD_H +# include +#endif #include @@ -150,9 +153,8 @@ int main(int argc, char **argv) client_manage_all(); ob_state = State_Running; - while (!ob_shutdown) { + while (!ob_shutdown) event_loop(); - } ob_state = State_Exiting; client_unmanage_all(); @@ -169,11 +171,31 @@ int main(int argc, char **argv) timer_shutdown(); } - XCloseDisplay(ob_display); - dispatch_shutdown(); - /* XXX if (ob_restart) */ + XCloseDisplay(ob_display); + + if (ob_restart) { + ob_restart_path = ""; + if (ob_restart_path != NULL) { + int argcp; + char **argvp; + GError *err = NULL; + + /* run other shit */ + if (g_shell_parse_argv(ob_restart_path, &argcp, &argvp, &err)) { + execvp(argvp[0], argvp); + g_strfreev(argvp); + } else { + g_warning("failed to execute '%s': %s", ob_restart_path, + err->message); + } + } + + /* re-run me */ + execvp(argv[0], argv); /* try how we were run */ + execlp("ob3", "ob3", NULL); /* try this as a last resort */ + } return 0; }