]> Dogcows Code - chaz/openbox/blobdiff - openbox/actions/focustobottom.c
split the focustobottom action back out from unfocus
[chaz/openbox] / openbox / actions / focustobottom.c
diff --git a/openbox/actions/focustobottom.c b/openbox/actions/focustobottom.c
new file mode 100644 (file)
index 0000000..74d48e3
--- /dev/null
@@ -0,0 +1,17 @@
+#include "openbox/actions.h"
+#include "openbox/focus.h"
+
+static gboolean run_func(ObActionsData *data, gpointer options);
+
+void action_focustobottom_startup()
+{
+    actions_register("FocusToBottom", NULL, NULL, run_func, NULL, NULL);
+}
+
+/* Always return FALSE because its not interactive */
+static gboolean run_func(ObActionsData *data, gpointer options)
+{
+    if (data->client)
+        focus_order_to_bottom(data->client);
+    return FALSE;
+}
This page took 0.022658 seconds and 4 git commands to generate.