all repos — openbox @ 88dbe7c24863ebb77446a1e2b7c3ceb46422a89c

openbox fork - make it a bit more like ryudo

src/main.cc (raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-

/*! @file main.cc
  @brief Main entry point for the application
*/

#ifdef    HAVE_CONFIG_H
#  include "../config.h"
#endif // HAVE_CONFIG_H

extern "C" {
#ifdef    HAVE_LOCALE_H
# include <locale.h>
#endif // HAVE_LOCALE_H

#include "gettext.h"
}

#include "openbox.hh"

int main(int argc, char **argv) {
  // initialize the locale
  setlocale(LC_ALL, "");
  bindtextdomain(PACKAGE, LOCALEDIR);
  bind_textdomain_codeset(GETTEXT_PACKAGE, "UTF-8");
  textdomain(PACKAGE);

  ob::Openbox openbox(argc, argv);
  openbox.eventLoop();
}