diff options
author | Aryadev Chavali <aryadev@aryadevchavali.com> | 2024-04-23 15:43:06 +0530 |
---|---|---|
committer | Aryadev Chavali <aryadev@aryadevchavali.com> | 2024-04-23 15:43:06 +0530 |
commit | 1c0d8db78e9a13ced7e94a5886f2b152065c2781 (patch) | |
tree | 9c720a26bd1df3ba1aca129ccd929c07627b0518 /patches | |
parent | f84237584b76348058bc205b2e0fcf5dfc005d47 (diff) | |
download | dwm-1c0d8db78e9a13ced7e94a5886f2b152065c2781.tar.gz dwm-1c0d8db78e9a13ced7e94a5886f2b152065c2781.tar.bz2 dwm-1c0d8db78e9a13ced7e94a5886f2b152065c2781.zip |
Made a patch for adding gaps to gapless grid
Diffstat (limited to 'patches')
-rw-r--r-- | patches/dwm-gaplessgrid-add-gaps.diff | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/patches/dwm-gaplessgrid-add-gaps.diff b/patches/dwm-gaplessgrid-add-gaps.diff new file mode 100644 index 0000000..1b2b758 --- /dev/null +++ b/patches/dwm-gaplessgrid-add-gaps.diff @@ -0,0 +1,32 @@ +From f84237584b76348058bc205b2e0fcf5dfc005d47 Mon Sep 17 00:00:00 2001 +From: Aryadev Chavali <aryadev@aryadevchavali.com> +Date: Tue, 23 Apr 2024 15:42:04 +0530 +Subject: [PATCH] Add gaps to gapless-grid (properly) + +This adjusts both the x and y of each client now. +--- + gaplessgrid.c | 8 ++++---- + 1 file changed, 4 insertions(+), 4 deletions(-) + +diff --git a/gaplessgrid.c b/gaplessgrid.c +index 09d9ac8..649f656 100644 +--- a/gaplessgrid.c ++++ b/gaplessgrid.c +@@ -22,11 +22,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); +- cx = (m->wx + cn*cw); +- cy = (m->wy + rn*ch); +- resize(c, cx, cy, cw - 2 * c->bw, ch - 2 * c->bw, False); ++ 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); + rn++; + if(rn >= rows) { + rn = 0; +-- +2.44.0 + |