From 27a0f0f4c99bab0ceaa496f14c7498b230fcab25 Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Sat, 14 Jul 2007 09:17:39 -0400 Subject: split the focustobottom action back out from unfocus --- openbox/actions/focustobottom.c | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 openbox/actions/focustobottom.c (limited to 'openbox/actions/focustobottom.c') diff --git a/openbox/actions/focustobottom.c b/openbox/actions/focustobottom.c new file mode 100644 index 00000000..74d48e33 --- /dev/null +++ b/openbox/actions/focustobottom.c @@ -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; +} -- cgit v1.2.3