X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=openbox%2Fopenbox.c;h=017eb184115bdd3231634269fcdd34380811f8c5;hb=bf707e7240bbf86be7628c28319d463847738671;hp=fd4973da4514dbb17a6245a10d6a142a4f3a91b6;hpb=598c5d6c07118517b47d7c416a79dc9743271aa8;p=chaz%2Fopenbox diff --git a/openbox/openbox.c b/openbox/openbox.c index fd4973da..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(); @@ -160,6 +162,7 @@ int main(int argc, char **argv) plugin_shutdown(); /* calls all the plugins' shutdown functions */ grab_shutdown(); client_shutdown(); + focus_shutdown(); screen_shutdown(); event_shutdown(); engine_shutdown(); @@ -167,12 +170,32 @@ int main(int argc, char **argv) render_shutdown(); 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; }