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/close.c | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 openbox/actions/close.c (limited to 'openbox/actions/close.c') diff --git a/openbox/actions/close.c b/openbox/actions/close.c new file mode 100644 index 00000000..37260e13 --- /dev/null +++ b/openbox/actions/close.c @@ -0,0 +1,20 @@ +#include "openbox/actions.h" +#include "openbox/client.h" + +static gboolean run_func(ObActionsData *data, gpointer options); + +void action_close_startup() +{ + actions_register("Close", + 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_close(data->client); + + return FALSE; +} -- cgit v1.2.3