X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=openbox%2Fopenbox.c;h=db14afb099731a00aabea13e04d544f9215bfa4b;hb=e5b94e6072287d39a777a3cedd0f10a66c58a2b5;hp=ae1232fa7ac10e0e6e6cc96bde3a2a5ea6eda54d;hpb=e5cc6c82520a0d4828394f5edddded77292f22ce;p=chaz%2Fopenbox diff --git a/openbox/openbox.c b/openbox/openbox.c index ae1232fa..db14afb0 100644 --- a/openbox/openbox.c +++ b/openbox/openbox.c @@ -28,6 +28,7 @@ #include "xerror.h" #include "prop.h" #include "screen.h" +#include "actions.h" #include "startupnotify.h" #include "focus.h" #include "focus_cycle.h" @@ -241,6 +242,8 @@ gint main(gint argc, gchar **argv) /* start up config which sets up with the parser */ config_startup(i); + /* register all the available actions */ + actions_startup(reconfigure); /* parse/load user options */ if (parse_load_rc(NULL, &doc, &node)) { @@ -373,6 +376,7 @@ gint main(gint argc, gchar **argv) sn_shutdown(reconfigure); window_shutdown(reconfigure); event_shutdown(reconfigure); + actions_shutdown(reconfigure); config_shutdown(); modkeys_shutdown(reconfigure); } while (reconfigure);