From 916e24d9c4e86f878e677512d82647d6038a2dbe Mon Sep 17 00:00:00 2001 From: Mikael Magnusson Date: Fri, 11 Mar 2005 21:49:54 +0000 Subject: Add a FocusToBottom action which moves the client to the bottom of the focus order stack --- openbox/action.c | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'openbox/action.c') diff --git a/openbox/action.c b/openbox/action.c index d83926b7..fa41e788 100644 --- a/openbox/action.c +++ b/openbox/action.c @@ -471,6 +471,11 @@ ActionString actionstrings[] = action_iconify, setup_client_action }, + { + "focustobottom", + action_focus_order_to_bottom, + setup_client_action + }, { "raiselower", action_raiselower, @@ -1052,6 +1057,11 @@ void action_iconify(union ActionData *data) client_action_end(data); } +void action_focus_order_to_bottom(union ActionData *data) +{ + focus_order_to_bottom(data->client.any.c); +} + void action_raiselower(union ActionData *data) { ObClient *c = data->client.any.c; -- cgit v1.2.3