From f227bd994d21d901790d93a962915863914b6c09 Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Fri, 22 Jun 2007 15:51:10 +0000 Subject: add the kill/close/cyclewindows actions --- openbox/actions/kill.c | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 openbox/actions/kill.c (limited to 'openbox/actions/kill.c') diff --git a/openbox/actions/kill.c b/openbox/actions/kill.c new file mode 100644 index 00000000..755a4daf --- /dev/null +++ b/openbox/actions/kill.c @@ -0,0 +1,21 @@ +#include "openbox/actions.h" +#include "openbox/stacking.h" + +static gboolean run_func(ObActionsData *data, gpointer options); + +void action_kill_startup() +{ + actions_register("Kill", + NULL, NULL, + run_func, + NULL, NULL); +} + +/* Always return FALSE because its not interactive */ +static gboolean run_func(ObActionsData *data, gpointer options) +{ + if (data->client) + client_kill(data->client); + + return FALSE; +} -- cgit v1.2.3