X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;ds=sidebyside;f=openbox%2Fopenbox.c;h=250ca6d07f465753515259a96698131618574f1c;hb=9dacac5e5e6b9ed86e76680b048bc227d8866ac6;hp=ae1232fa7ac10e0e6e6cc96bde3a2a5ea6eda54d;hpb=fa6f70ce3a1e5aff0cdafb4b641128f360278f2a;p=chaz%2Fopenbox diff --git a/openbox/openbox.c b/openbox/openbox.c index ae1232fa..250ca6d0 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" @@ -239,6 +240,8 @@ gint main(gint argc, gchar **argv) of the rc */ i = parse_startup(); + /* register all the available actions */ + actions_startup(reconfigure); /* start up config which sets up with the parser */ config_startup(i); @@ -374,6 +377,7 @@ gint main(gint argc, gchar **argv) window_shutdown(reconfigure); event_shutdown(reconfigure); config_shutdown(); + actions_shutdown(reconfigure); modkeys_shutdown(reconfigure); } while (reconfigure); }