]> Dogcows Code - chaz/openbox/blobdiff - openbox/action.c
Add a FocusToBottom action which moves the client to the bottom of the focus order...
[chaz/openbox] / openbox / action.c
index d83926b7740b4e4613f5aae648787eef99d66b90..fa41e788670af3f2608854408ec9679393ca6e04 100644 (file)
@@ -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;
This page took 0.021557 seconds and 4 git commands to generate.