diff options
author | 2022-02-27 18:16:01 +0530 | |
---|---|---|
committer | 2022-02-27 18:16:01 +0530 | |
commit | 63af1cb7c96782c96e6358d71dbe248bdd6e9fee (patch) | |
tree | d84df6a7f09032260b1ba5915a207da50f3df2a3 /patches | |
download | dwm-63af1cb7c96782c96e6358d71dbe248bdd6e9fee.tar.gz dwm-63af1cb7c96782c96e6358d71dbe248bdd6e9fee.tar.bz2 dwm-63af1cb7c96782c96e6358d71dbe248bdd6e9fee.zip |
New Version
Diffstat (limited to 'patches')
-rw-r--r-- | patches/dwm-activetagindicatorbar-6.2.diff | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/patches/dwm-activetagindicatorbar-6.2.diff b/patches/dwm-activetagindicatorbar-6.2.diff new file mode 100644 index 0000000..4450099 --- /dev/null +++ b/patches/dwm-activetagindicatorbar-6.2.diff @@ -0,0 +1,17 @@ +diff -up dwm-a/dwm.c dwm-b/dwm.c +--- dwm-a/dwm.c 2019-02-02 06:55:28.000000000 -0600 ++++ dwm-b/dwm.c 2019-02-23 21:43:13.359179100 -0600 +@@ -719,9 +719,10 @@ drawbar(Monitor *m) + drw_setscheme(drw, scheme[m->tagset[m->seltags] & 1 << i ? SchemeSel : SchemeNorm]); + drw_text(drw, x, 0, w, bh, lrpad / 2, tags[i], urg & 1 << i); + if (occ & 1 << i) +- drw_rect(drw, x + boxs, boxs, boxw, boxw, +- m == selmon && selmon->sel && selmon->sel->tags & 1 << i, +- urg & 1 << i); ++ drw_rect(drw, x + boxw, 0, w - ( 2 * boxw + 1), boxw, ++ m == selmon && selmon->sel && selmon->sel->tags & 1 << i, ++ urg & 1 << i); ++ + x += w; + } + w = blw = TEXTW(m->ltsymbol); |