X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=openbox%2Fopenbox.c;h=c77f6df1151ee16b099f57d7d9df7cbe201e5b51;hb=32ec1d1e86f6c2868c53ee824fb8842525c607a9;hp=bd7585ad296d3c341e1c85f3ec4318fc8368135f;hpb=f8a47de5ec444c452093371e3db16857eb39a490;p=chaz%2Fopenbox diff --git a/openbox/openbox.c b/openbox/openbox.c index bd7585ad..c77f6df1 100644 --- a/openbox/openbox.c +++ b/openbox/openbox.c @@ -14,9 +14,11 @@ #include "hooks.h" #include "clientwrap.h" #include "openboxwrap.h" +#include "configwrap.h" #include "themerc.h" #include "timer.h" #include "../render/render.h" +#include "../render/font.h" #ifdef HAVE_FCNTL_H # include @@ -129,9 +131,11 @@ int main(int argc, char **argv) if (screen_annex()) { /* it will be ours! */ timer_startup(); render_startup(); + font_startup(); themerc_startup(); engine_startup(themerc_engine); python_startup(); + configwrap_startup(); openboxwrap_startup(); clientwrap_startup(); hooks_startup(); @@ -169,6 +173,7 @@ int main(int argc, char **argv) hooks_shutdown(); clientwrap_shutdown(); openboxwrap_shutdown(); + configwrap_shutdown(); python_shutdown(); engine_shutdown(); themerc_shutdown();