aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxyz <gky44px1999@gmail.com>2022-01-09 15:10:11 -0800
committerxyz <gky44px1999@gmail.com>2022-01-09 15:10:11 -0800
commit43c8c331aeb5bb05fe9c50a1c01866da2fb31d86 (patch)
tree4c665ef905ae7f5620bd47c0887cd83eb432433e
parentd9b4ff6d15b207fc01aa86c6c1f5237e12a26d1d (diff)
parentd39e2f3441fe18aba8d1a62c08918a411ec6f237 (diff)
Merge branch 'master' into fly
-rw-r--r--config.mk2
-rw-r--r--dwm.c3
2 files changed, 4 insertions, 1 deletions
diff --git a/config.mk b/config.mk
index 7084c33..b6eb7e0 100644
--- 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
index a4ef3ad..97ed31e 100644
--- a/dwm.c
+++ b/dwm.c
@@ -703,6 +703,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]);