]> git.sur5r.net Git - i3/i3/blobdiff - include/client.h
floating: Don’t let clients become hidden under stack windows or fulscreen clients...
[i3/i3] / include / client.h
index 252f36196836170fba2e3f62c8ae0381b9e2dd21..068a364a518a278bab507fb0451aa6abd4863b1b 100644 (file)
@@ -52,4 +52,12 @@ bool client_matches_class_name(Client *client, char *to_class, char *to_title,
  */
 void client_toggle_fullscreen(xcb_connection_t *conn, Client *client);
 
+/**
+ * Sets the position of the given client in the X stack to the highest (tiling layer is always
+ * on the same position, so this doesn’t matter) below the first floating client, so that
+ * floating windows are always on top.
+ *
+ */
+void client_set_below_floating(xcb_connection_t *conn, Client *client);
+
 #endif