Change "plain" to "exact" for If's <title>
[openbox.git] / openbox / actions / dockautohide.c
blob4a750b2c3a368ebea5bcbc03842772db92168578
1 #include "openbox/actions.h"
2 #include "openbox/dock.h"
3 #include "openbox/config.h"
5 static gboolean run_func(ObActionsData *data, gpointer options);
7 void action_dockautohide_startup(void)
9 actions_register("ToggleDockAutoHide",
10 NULL, NULL,
11 run_func);
14 /* Always return FALSE because its not interactive */
15 static gboolean run_func(ObActionsData *data, gpointer options)
17 config_dock_hide = !config_dock_hide;
18 dock_configure();
20 return FALSE;