summaryrefslogtreecommitdiffhomepage
path: root/patch/attachx.c
diff options
context:
space:
mode:
authorbakkeby <[email protected]>2019-09-06 23:25:32 +0200
committerbakkeby <[email protected]>2019-09-06 23:25:32 +0200
commit04a7b4de407480089e575b0047d6998ccc001791 (patch)
tree02fd846ce5245e81319f13bf80d7264dd324ef59 /patch/attachx.c
parentab6eb606576a6fa966145b2066e7e59e6e7903a0 (diff)
downloaddwm-flexipatch-04a7b4de407480089e575b0047d6998ccc001791.tar.gz
dwm-flexipatch-04a7b4de407480089e575b0047d6998ccc001791.zip
Adding attachabove, attachaside, attachbelow and attachbottom patches
Diffstat (limited to 'patch/attachx.c')
-rw-r--r--patch/attachx.c41
1 files changed, 41 insertions, 0 deletions
diff --git a/patch/attachx.c b/patch/attachx.c
new file mode 100644
index 0000000..1557510
--- /dev/null
+++ b/patch/attachx.c
@@ -0,0 +1,41 @@
+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->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;
+ return;
+ }
+ #endif
+ attach(c); // master (default)
+} \ No newline at end of file