diff options
| author | Dana Jansens <danakj@orodu.net> | 2007-06-22 15:51:10 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2007-06-22 15:51:10 +0000 |
| commit | f227bd994d21d901790d93a962915863914b6c09 (patch) | |
| tree | 4177806d7185ec88db1336f5ac367a31ffc66af8 /openbox/actions/close.c | |
| parent | 091a7f77d4f527ec70227abe15e3be4b1ee15bb4 (diff) | |
add the kill/close/cyclewindows actions
Diffstat (limited to 'openbox/actions/close.c')
| -rw-r--r-- | openbox/actions/close.c | 20 |
1 files changed, 20 insertions, 0 deletions
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; +} |
