X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=src%2Fmain.cc;h=13047780fafa0175b9715a31609d54b12d0d7147;hb=7d215bd255d0744101b9ceb52c235bdc985fa034;hp=a43d21b11acc192c1b355c7a5c108ca255fdb88e;hpb=2627b85226b621868a4425f4aea695ed089d7de5;p=chaz%2Fopenbox diff --git a/src/main.cc b/src/main.cc index a43d21b1..13047780 100644 --- a/src/main.cc +++ b/src/main.cc @@ -4,27 +4,48 @@ @brief Main entry point for the application */ -#ifdef HAVE_CONFIG_H -# include "../config.h" -#endif // HAVE_CONFIG_H +#include "config.h" extern "C" { -#ifdef HAVE_LOCALE_H -# include -#endif // HAVE_LOCALE_H +#ifdef HAVE_UNISTD_H +# include +# include +#endif // HAVE_UNISTD_H #include "gettext.h" } #include "openbox.hh" +#include "otk/util.hh" + +#include +#include int main(int argc, char **argv) { // initialize the locale - setlocale(LC_ALL, ""); + if (!setlocale(LC_ALL, "")) + printf("Couldn't set locale from environment.\n"); bindtextdomain(PACKAGE, LOCALEDIR); bind_textdomain_codeset(PACKAGE, "UTF-8"); textdomain(PACKAGE); - ob::Openbox openbox(argc, argv); - openbox.eventLoop(); + ob::Openbox *openbox = new ob::Openbox(argc, argv); + openbox->eventLoop(); + + if (openbox->doRestart()) { + std::string prog = openbox->restartProgram(); + + delete openbox; // shutdown the current one! + + if (!prog.empty()) { + execl("/bin/sh", "/bin/sh", "-c", prog.c_str(), NULL); + perror(prog.c_str()); + } + + // fall back in case the above execlp doesn't work + execvp(argv[0], argv); + execvp(otk::basename(argv[0]).c_str(), argv); + } + + delete openbox; // shutdown }