summaryrefslogtreecommitdiff
path: root/patch/attachx.c
diff options
context:
space:
mode:
Diffstat (limited to 'patch/attachx.c')
-rw-r--r--patch/attachx.c43
1 files changed, 43 insertions, 0 deletions
diff --git a/patch/attachx.c b/patch/attachx.c
new file mode 100644
index 0000000..9e06b94
--- /dev/null
+++ b/patch/attachx.c
@@ -0,0 +1,43 @@
+void
+attachx(Client *c)
+{
+ #if ATTACHABOVE_PATCH
+ Client *at;
+ if (!(c->mon->sel == NULL || c->mon->sel == c->mon->clients || c->mon->sel->isfloating)) {
+ for (at = c->mon->clients; at->next != c->mon->sel; at = at->next);
+ c->next = at->next;
+ at->next = c;
+ return;
+ }
+ #elif ATTACHASIDE_PATCH
+ Client *at;
+ unsigned int n;
+
+ for (at = c->mon->clients, n = 0; at; at = at->next)
+ if (!at->isfloating && ISVISIBLEONTAG(at, c->tags))
+ if (++n >= c->mon->nmaster)
+ break;
+
+ if (at && c->mon->nmaster) {
+ c->next = at->next;
+ at->next = c;
+ return;
+ }
+ #elif ATTACHBELOW_PATCH
+ if (!(c->mon->sel == NULL || c->mon->sel == c || c->mon->sel->isfloating)) {
+ c->next = c->mon->sel->next;
+ c->mon->sel->next = c;
+ return;
+ }
+ #elif ATTACHBOTTOM_PATCH
+ Client *at;
+ for (at = c->mon->clients; at && at->next; at = at->next);
+ if (at) {
+ at->next = c;
+ c->next = NULL;
+ return;
+ }
+ #endif
+ attach(c); // master (default)
+}
+