summaryrefslogtreecommitdiff
path: root/patch/dwm-statusallmons-20160731-56a31dc.diff
diff options
context:
space:
mode:
authoryuzu-eva <stevenhu@web.de>2023-10-31 20:49:42 +0100
committeryuzu-eva <stevenhu@web.de>2023-10-31 20:49:42 +0100
commitc5df5da8979b3cec918c1f844151f9b7e1848a4b (patch)
tree514947e591d51ac00b481858728faed8e716b5a4 /patch/dwm-statusallmons-20160731-56a31dc.diff
parent8b98dd48b56ba7c62e881d31ddfb27b1d11fd091 (diff)
fix
Diffstat (limited to 'patch/dwm-statusallmons-20160731-56a31dc.diff')
-rw-r--r--patch/dwm-statusallmons-20160731-56a31dc.diff29
1 files changed, 0 insertions, 29 deletions
diff --git a/patch/dwm-statusallmons-20160731-56a31dc.diff b/patch/dwm-statusallmons-20160731-56a31dc.diff
deleted file mode 100644
index 126d974..0000000
--- a/patch/dwm-statusallmons-20160731-56a31dc.diff
+++ /dev/null
@@ -1,29 +0,0 @@
-URL: http://dwm.suckless.org/patches/statusallmons
-This patch draws and updates the statusbar on all monitors.
-
-Index: dwm/dwm.c
-===================================================================
---- dwm/dwm.c.orig
-+++ dwm/dwm.c
-@@ -715,7 +715,7 @@ drawbar(Monitor *m)
- Client *c;
-
- /* draw status first so it can be overdrawn by tags later */
-- if (m == selmon) { /* status is only drawn on selected monitor */
-+ if (m == selmon || 1) { /* status is only drawn on selected monitor */
- drw_setscheme(drw, scheme[SchemeNorm]);
- sw = TEXTW(stext) - lrpad / 2; /* no right padding so status text hugs the corner */
- drw_text(drw, m->ww - sw, 0, sw, bh, lrpad / 2 - 2, stext, 0);
-@@ -1991,9 +1991,11 @@ updatetitle(Client *c)
- void
- updatestatus(void)
- {
-+ Monitor* m;
- if (!gettextprop(root, XA_WM_NAME, stext, sizeof(stext)))
- strcpy(stext, "dwm-"VERSION);
-- drawbar(selmon);
-+ for(m = mons; m; m = m->next)
-+ drawbar(m);
- }
-
- void