summaryrefslogtreecommitdiff
path: root/openbox/actions/kill.c
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2007-06-22 15:51:10 +0000
committerDana Jansens <danakj@orodu.net>2007-06-22 15:51:10 +0000
commitf227bd994d21d901790d93a962915863914b6c09 (patch)
tree4177806d7185ec88db1336f5ac367a31ffc66af8 /openbox/actions/kill.c
parent091a7f77d4f527ec70227abe15e3be4b1ee15bb4 (diff)
add the kill/close/cyclewindows actions
Diffstat (limited to 'openbox/actions/kill.c')
-rw-r--r--openbox/actions/kill.c21
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;
+}