diff options
Diffstat (limited to 'openbox/openbox.c')
| -rw-r--r-- | openbox/openbox.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/openbox/openbox.c b/openbox/openbox.c index edabe350..4bc12bcd 100644 --- a/openbox/openbox.c +++ b/openbox/openbox.c @@ -8,6 +8,7 @@ #include "focus.h" #include "extensions.h" #include "gettext.h" +#include "config.h" #include "grab.h" #include "engine.h" #include "themerc.h" @@ -143,6 +144,7 @@ int main(int argc, char **argv) if (screen_annex()) { /* it will be ours! */ timer_startup(); + config_startup(); render_startup(); font_startup(); themerc_startup(); @@ -154,6 +156,8 @@ int main(int argc, char **argv) grab_startup(); plugin_startup(); + config_parse(); + /* XXX load all plugins!! */ plugin_open("focus"); plugin_open("keyboard"); @@ -180,6 +184,7 @@ int main(int argc, char **argv) engine_shutdown(); themerc_shutdown(); render_shutdown(); + config_shutdown(); timer_shutdown(); } |
