summaryrefslogtreecommitdiff
path: root/dwl.c.rej
diff options
context:
space:
mode:
authorJohannes Herman <johannes.herman@gmail.com>2025-07-28 19:40:38 +0200
committerJohannes Herman <johannes.herman@gmail.com>2025-07-28 19:40:38 +0200
commit1067de190423e605d68817d70b282262659eb727 (patch)
treef06dc37be905c8678546af5c2dd6ba06837b0aa2 /dwl.c.rej
parenta167f09bc24a9c1ecb8d9fbc1858708efb030b89 (diff)
snail layout
Diffstat (limited to 'dwl.c.rej')
-rw-r--r--dwl.c.rej25
1 files changed, 0 insertions, 25 deletions
diff --git a/dwl.c.rej b/dwl.c.rej
deleted file mode 100644
index 8d8c1f0..0000000
--- a/dwl.c.rej
+++ /dev/null
@@ -1,25 +0,0 @@
---- dwl.c
-+++ dwl.c
-@@ -2703,7 +2715,7 @@ tagmon(const Arg *arg)
- void
- tile(Monitor *m)
- {
-- unsigned int mw, my, ty;
-+ unsigned int mw, my, ty, draw_borders = 1;
- int i, n = 0;
- Client *c;
-
-@@ -2726,11 +2741,11 @@ tile(Monitor *m)
- continue;
- if (i < m->nmaster) {
- resize(c, (struct wlr_box){.x = m->w.x, .y = m->w.y + my, .width = mw,
-- .height = (m->w.height - my) / (MIN(n, m->nmaster) - i)}, 0);
-+ .height = (m->w.height - my) / (MIN(n, m->nmaster) - i)}, 0, draw_borders);
- my += c->geom.height;
- } else {
- resize(c, (struct wlr_box){.x = m->w.x + mw, .y = m->w.y + ty,
-- .width = m->w.width - mw, .height = (m->w.height - ty) / (n - i)}, 0);
-+ .width = m->w.width - mw, .height = (m->w.height - ty) / (n - i)}, 0, draw_borders);
- ty += c->geom.height;
- }
- i++;