commit 9b3cda43ab99f66a48e0a880005efd4b7f26a5ee
parent 61ca7691b28a05eeb8d21a5b08a4f9ceaa07df68
Author: Matsuda Kenji <contact2655@matsudakenji.xyz>
Date: Sat, 8 Jan 2022 19:40:22 +0900
new version was released
Merge branch 'master' of https://git.suckless.org/dwm
Diffstat:
2 files changed, 4 insertions(+), 1 deletion(-)
diff --git a/config.mk b/config.mk
@@ -1,5 +1,5 @@
# dwm version
-VERSION = 6.2
+VERSION = 6.3
# Customize below to fit your system
diff --git a/dwm.c b/dwm.c
@@ -702,6 +702,9 @@ drawbar(Monitor *m)
unsigned int i, occ = 0, urg = 0;
Client *c;
+ if (!m->showbar)
+ return;
+
/* 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]);