diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-03-22 14:41:19 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-03-22 14:41:19 +0000 |
| commit | 56dc0446cd8a9a2685e1ffadb58b781e52e1a95a (patch) | |
| tree | bb5743d179f9061979c1d01430c860843db377fd /openbox/openbox.c | |
| parent | 4502cad55033f4a703cb562d27d637f41a05c5c6 (diff) | |
start the config system, add the config file parser
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(); } |
