aboutsummaryrefslogtreecommitdiff
path: root/patches/dwm-gaplessgrid-pertag-gaps.diff
diff options
context:
space:
mode:
Diffstat (limited to 'patches/dwm-gaplessgrid-pertag-gaps.diff')
-rw-r--r--patches/dwm-gaplessgrid-pertag-gaps.diff39
1 files changed, 39 insertions, 0 deletions
diff --git a/patches/dwm-gaplessgrid-pertag-gaps.diff b/patches/dwm-gaplessgrid-pertag-gaps.diff
new file mode 100644
index 0000000..e38f041
--- /dev/null
+++ b/patches/dwm-gaplessgrid-pertag-gaps.diff
@@ -0,0 +1,39 @@
+From d15f7fd6781e8916538efcb62011167d5b540ada Mon Sep 17 00:00:00 2001
+From: Aryadev Chavali <aryadev@aryadevchavali.com>
+Date: Wed, 22 May 2024 12:58:03 +0530
+Subject: [PATCH] [PATCH] Adjust gapless grid for pertag gaps
+
+---
+ gaplessgrid.c | 9 +++++----
+ 1 file changed, 5 insertions(+), 4 deletions(-)
+
+diff --git a/gaplessgrid.c b/gaplessgrid.c
+index 649f656..3c9ad76 100644
+--- a/gaplessgrid.c
++++ b/gaplessgrid.c
+@@ -15,6 +15,7 @@ gaplessgrid(Monitor *m) {
+ cols = 2;
+ rows = n/cols;
+
++ const int gap_size = m->pertag->gaps[m->pertag->curtag];
+ /* window geometries */
+ cw = cols ? m->ww / cols : m->ww;
+ cn = 0; /* current column number */
+@@ -22,10 +23,10 @@ gaplessgrid(Monitor *m) {
+ for(i = 0, c = nexttiled(m->clients); c; i++, c = nexttiled(c->next)) {
+ if(i/rows + 1 > cols - n%cols)
+ rows = n/cols + 1;
+- ch = (rows ? m->wh / rows : m->wh) - m->gappx;
+- cx = (m->wx + cn*cw) + m->gappx;
+- cy = (m->wy + rn*ch) + m->gappx;
+- resize(c, cx + m->gappx, cy + m->gappx, cw - 2 * c->bw - m->gappx, ch - 2 * c->bw - m->gappx, False);
++ ch = (rows ? m->wh / rows : m->wh) - gap_size;
++ cx = (m->wx + cn*cw) + gap_size;
++ cy = (m->wy + rn*ch) + gap_size;
++ resize(c, cx + gap_size, cy + gap_size, cw - 2 * c->bw - gap_size, ch - 2 * c->bw - gap_size, False);
+ rn++;
+ if(rn >= rows) {
+ rn = 0;
+--
+2.45.0
+