all repos — openbox @ cee305244662d352a7ad5ab7ae22f6221c064d3d

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
31
32
33
34
// -*- mode: C++; indent-tabs-mode: nil; -*-

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

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

extern "C" {
#include "gettext.h"
}

#include <string>
using std::string;

#include "blackbox.hh"
#include "openbox.hh"

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

  ob::Openbox openbox(argc, argv);
  //ob::Blackbox blackbox(argc, argv, 0);
  
  //Blackbox blackbox(argv, session_display, rc_file);
  openbox.eventLoop();

  return(0);
}