diff options
| author | Malfurious <m@lfurio.us> | 2024-03-02 15:12:21 -0500 |
|---|---|---|
| committer | Matt Hunter <m@lfurio.us> | 2026-01-18 00:18:46 -0500 |
| commit | f22431698fd261219f0e780a74e47de221bae8d4 (patch) | |
| tree | 45d039f1541aea773946d6b691be46ab85ed7057 /dwm.c | |
| parent | 945ce59ef54857edce8c536754d0325ae7651de3 (diff) | |
| download | dwm-f22431698fd261219f0e780a74e47de221bae8d4.tar.gz dwm-f22431698fd261219f0e780a74e47de221bae8d4.zip | |
patch: philcollins (full columns)
Layout adapted from centerfloatingmaster to simply tile all clients
horizontally across the screen, without respect to mfact or nmaster.
Diffstat (limited to 'dwm.c')
| -rw-r--r-- | dwm.c | 20 |
1 files changed, 20 insertions, 0 deletions
@@ -191,6 +191,7 @@ static void monocle(Monitor *m); static void motionnotify(XEvent *e); static void movemouse(const Arg *arg); static Client *nexttiled(Client *c); +static void philcollins(Monitor *m); static void pop(Client *c); static void propertynotify(XEvent *e); static void quit(const Arg *arg); @@ -1322,6 +1323,25 @@ nexttiled(Client *c) } void +philcollins(Monitor *m) +{ + unsigned int i, n, w, tx; + Client *c; + + /* count number of clients in the selected monitor */ + for (n = 0, c = nexttiled(m->clients); c; c = nexttiled(c->next), n++); + if (n == 0) + return; + + /* there are no masters, clients are stacked in columns horizontally */ + for (i = tx = 0, c = nexttiled(m->clients); c; c = nexttiled(c->next), i++) { + w = (m->ww - tx) / (n - i); + resize(c, m->wx + tx, m->wy, w - (2*c->bw), m->wh - (2*c->bw), 0); + tx += WIDTH(c); + } +} + +void pop(Client *c) { detach(c); |
