Allow moving fullscreen windows between monitors
[openbox.git] / openbox / actions / kill.c
blobb7d547b9d5b1ee6a07f87ceee94dcc5fe4ee7f97
1 #include "openbox/actions.h"
2 #include "openbox/client.h"
4 static gboolean run_func(ObActionsData *data, gpointer options);
6 void action_kill_startup(void)
8 actions_register("Kill",
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)
17 client_kill(data->client);
19 return FALSE;