diff options
Diffstat (limited to 'openbox/actions/kill.c')
| -rw-r--r-- | openbox/actions/kill.c | 21 |
1 files changed, 21 insertions, 0 deletions
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; +} |
