Change "plain" to "exact" for If's <title>
[openbox.git] / openbox / actions / close.c
blobd2bc96c2166e424eacbb9c550f50d3f5bda332ce
1 #include "openbox/actions.h"
2 #include "openbox/client.h"
4 static gboolean run_func(ObActionsData *data, gpointer options);
6 void action_close_startup(void)
8 actions_register("Close",
9 NULL, NULL,
10 run_func);
13 /* Always return FALSE because its not interactive */
14 static gboolean run_func(ObActionsData *data, gpointer options)
16 if (data->client) client_close(data->client);
18 return FALSE;