summaryrefslogtreecommitdiff
path: root/src/main.cc
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-03-21 18:42:39 +0000
committerDana Jansens <danakj@orodu.net>2003-03-21 18:42:39 +0000
commita52a6d96d701c993896f276e4198003317632aaf (patch)
treebe2f51e6a433d1fdf9a7c8248b343cb3f6297212 /src/main.cc
parenta36c7543d4eedaa9e10bfd9f4d9b81279b1bb7e6 (diff)
rm the old code including the .pys and the c++ shit
Diffstat (limited to 'src/main.cc')
-rw-r--r--src/main.cc51
1 files changed, 0 insertions, 51 deletions
diff --git a/src/main.cc b/src/main.cc
deleted file mode 100644
index 13047780..00000000
--- a/src/main.cc
+++ /dev/null
@@ -1,51 +0,0 @@
-// -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-
-
-/*! @file main.cc
- @brief Main entry point for the application
-*/
-
-#include "config.h"
-
-extern "C" {
-#ifdef HAVE_UNISTD_H
-# include <sys/types.h>
-# include <unistd.h>
-#endif // HAVE_UNISTD_H
-
-#include "gettext.h"
-}
-
-#include "openbox.hh"
-#include "otk/util.hh"
-
-#include <clocale>
-#include <cstdio>
-
-int main(int argc, char **argv) {
- // initialize the locale
- 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 = 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
-}