commit 46a1006d152ce2666f77539d891a45b154ee8374
Author: nemo2k <[email protected]>
Date:   Mon Jun 27 22:33:01 2022 +0200

    [dwm][patch][colorbar] patch for 6.3 version

diff --git a/dwm.suckless.org/patches/colorbar/dwm-colorbar-6.3.diff 
b/dwm.suckless.org/patches/colorbar/dwm-colorbar-6.3.diff
new file mode 100644
index 00000000..384f6fa3
--- /dev/null
+++ b/dwm.suckless.org/patches/colorbar/dwm-colorbar-6.3.diff
@@ -0,0 +1,86 @@
+From 647a2a56cf7cab6dea868f9800671770940ce3c3 Mon Sep 17 00:00:00 2001
+From: Alessandro Sisto <[email protected]>
+Date: Sun, 5 Jun 2022 12:03:43 +0200
+Subject: [PATCH] colorbar
+
+---
+ config.def.h |  6 +++++-
+ dwm.c        | 12 ++++++------
+ 2 files changed, 11 insertions(+), 7 deletions(-)
+
+diff --git a/config.def.h b/config.def.h
+index a2ac963..56bc324 100644
+--- a/config.def.h
++++ b/config.def.h
+@@ -16,6 +16,11 @@ static const char *colors[][3]      = {
+       /*               fg         bg         border   */
+       [SchemeNorm] = { col_gray3, col_gray1, col_gray2 },
+       [SchemeSel]  = { col_gray4, col_cyan,  col_cyan  },
++      [SchemeStatus]  = { col_gray3, col_gray1,  "#000000"  }, // Statusbar 
right {text,background,not used but cannot be empty}
++      [SchemeTagsSel]  = { col_gray4, col_cyan,  "#000000"  }, // Tagbar left 
selected {text,background,not used but cannot be empty}
++      [SchemeTagsNorm]  = { col_gray3, col_gray1,  "#000000"  }, // Tagbar 
left unselected {text,background,not used but cannot be empty}
++      [SchemeInfoSel]  = { col_gray4, col_cyan,  "#000000"  }, // infobar 
middle  selected {text,background,not used but cannot be empty}
++      [SchemeInfoNorm]  = { col_gray3, col_gray1,  "#000000"  }, // infobar 
middle  unselected {text,background,not used but cannot be empty}
+ };
+ 
+ /* tagging */
+@@ -113,4 +118,3 @@ static Button buttons[] = {
+       { ClkTagBar,            MODKEY,         Button1,        tag,            
{0} },
+       { ClkTagBar,            MODKEY,         Button3,        toggletag,      
{0} },
+ };
+-
+diff --git a/dwm.c b/dwm.c
+index a96f33c..0eaa4cd 100644
+--- a/dwm.c
++++ b/dwm.c
+@@ -59,7 +59,7 @@
+ 
+ /* enums */
+ enum { CurNormal, CurResize, CurMove, CurLast }; /* cursor */
+-enum { SchemeNorm, SchemeSel }; /* color schemes */
++enum { SchemeNorm, SchemeSel, SchemeStatus, SchemeTagsSel, SchemeTagsNorm, 
SchemeInfoSel, SchemeInfoNorm }; /* color schemes */
+ enum { NetSupported, NetWMName, NetWMState, NetWMCheck,
+        NetWMFullscreen, NetActiveWindow, NetWMWindowType,
+        NetWMWindowTypeDialog, NetClientList, NetLast }; /* EWMH atoms */
+@@ -707,7 +707,7 @@ drawbar(Monitor *m)
+ 
+       /* draw status first so it can be overdrawn by tags later */
+       if (m == selmon) { /* status is only drawn on selected monitor */
+-              drw_setscheme(drw, scheme[SchemeNorm]);
++              drw_setscheme(drw, scheme[SchemeStatus]);
+               tw = TEXTW(stext) - lrpad + 2; /* 2px right padding */
+               drw_text(drw, m->ww - tw, 0, tw, bh, 0, stext, 0);
+       }
+@@ -720,7 +720,7 @@ drawbar(Monitor *m)
+       x = 0;
+       for (i = 0; i < LENGTH(tags); i++) {
+               w = TEXTW(tags[i]);
+-              drw_setscheme(drw, scheme[m->tagset[m->seltags] & 1 << i ? 
SchemeSel : SchemeNorm]);
++              drw_setscheme(drw, scheme[m->tagset[m->seltags] & 1 << i ? 
SchemeTagsSel : SchemeTagsNorm]);
+               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,
+@@ -729,17 +729,17 @@ drawbar(Monitor *m)
+               x += w;
+       }
+       w = blw = TEXTW(m->ltsymbol);
+-      drw_setscheme(drw, scheme[SchemeNorm]);
++      drw_setscheme(drw, scheme[SchemeTagsNorm]);
+       x = drw_text(drw, x, 0, w, bh, lrpad / 2, m->ltsymbol, 0);
+ 
+       if ((w = m->ww - tw - x) > bh) {
+               if (m->sel) {
+-                      drw_setscheme(drw, scheme[m == selmon ? SchemeSel : 
SchemeNorm]);
++                      drw_setscheme(drw, scheme[m == selmon ? SchemeInfoSel : 
SchemeInfoNorm]);
+                       drw_text(drw, x, 0, w, bh, lrpad / 2, m->sel->name, 0);
+                       if (m->sel->isfloating)
+                               drw_rect(drw, x + boxs, boxs, boxw, boxw, 
m->sel->isfixed, 0);
+               } else {
+-                      drw_setscheme(drw, scheme[SchemeNorm]);
++                      drw_setscheme(drw, scheme[SchemeInfoNorm]);
+                       drw_rect(drw, x, 0, w, bh, 1, 1);
+               }
+       }
+-- 
+2.36.1
+
diff --git a/dwm.suckless.org/patches/colorbar/index.md 
b/dwm.suckless.org/patches/colorbar/index.md
index c1a9be87..5b0dd42d 100644
--- a/dwm.suckless.org/patches/colorbar/index.md
+++ b/dwm.suckless.org/patches/colorbar/index.md
@@ -14,6 +14,9 @@ Download
 --------
 * [dwm-colorbar-6.2.diff](dwm-colorbar-6.2.diff)(2020-01-13)
 
+* [dwm-colorbar-6.3.diff](dwm-colorbar-6.3.diff)(2022-06-27)
+
 Author
 ------
 * Lars Niesen - <[email protected]>
+* Nemo - <[email protected]>
\ No newline at end of file


Reply via email to