summaryrefslogtreecommitdiff
path: root/openbox/openbox.c
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2007-06-21 22:50:16 +0000
committerDana Jansens <danakj@orodu.net>2007-06-21 22:50:16 +0000
commite5b94e6072287d39a777a3cedd0f10a66c58a2b5 (patch)
treeb808b657089917cd6370f8534382d6539d29bf33 /openbox/openbox.c
parente5cc6c82520a0d4828394f5edddded77292f22ce (diff)
some first structural stuff for new actions
Diffstat (limited to 'openbox/openbox.c')
-rw-r--r--openbox/openbox.c4
1 files changed, 4 insertions, 0 deletions
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);