summaryrefslogtreecommitdiffhomepage
path: root/patches.def.h
diff options
context:
space:
mode:
authorbakkeby <[email protected]>2021-10-07 11:46:31 +0200
committerbakkeby <[email protected]>2021-10-07 11:46:31 +0200
commite68f434944dee17aa1654c2a2de59d67565cba64 (patch)
treedb7d66c636af1748773a49a357debd6fef310a72 /patches.def.h
parenta42a81a7114c2b9699882d6896d97e2cb384c1f1 (diff)
downloaddwm-flexipatch-e68f434944dee17aa1654c2a2de59d67565cba64.tar.gz
dwm-flexipatch-e68f434944dee17aa1654c2a2de59d67565cba64.zip
Add a statusallmons and staticstatus easily toggleable in patches.h ref. #188
Diffstat (limited to 'patches.def.h')
-rw-r--r--patches.def.h14
1 files changed, 13 insertions, 1 deletions
diff --git a/patches.def.h b/patches.def.h
index 809d714..bcd15e2 100644
--- a/patches.def.h
+++ b/patches.def.h
@@ -90,7 +90,7 @@
*
* Examples:
* xsetroot -name "$(echo -e '<\x01a<\x02b<\x03c')"
- * xsetroot -name "$(echo -e '/\x01d/\x02d/\x03f')"
+ * xsetroot -name "$(echo -e '/\x01d/\x02e/\x03f')"
*
* https://gitlab.com/udiboy1209-suckless/dwm/-/commit/071f5063e8ac4280666828179f92788d893eea40#4b1a539194be7467cefbda22f675a3b7c19ceca7
* https://dwm.suckless.org/patches/statuscolors/
@@ -358,6 +358,18 @@
*/
#define BAR_PANGO_PATCH 0
+/* This patch allows the status text to be fixed to the bar on a specific
+ * monitor rather than being drawn on the focused monitor.
+ * The statusallmons patch takes precedence over this patch.
+ * https://dwm.suckless.org/patches/staticstatus/
+ */
+#define BAR_STATICSTATUS_PATCH 0
+
+/* This patch draws and updates the statusbar on all monitors.
+ * https://dwm.suckless.org/patches/statusallmons/
+ */
+#define BAR_STATUSALLMONS_PATCH 0
+
/* This patch enables colored text in the status bar. It changes the way colors are defined
* in config.h allowing multiple color combinations for use in the status script.
* This patch is incompatible with and takes precedence over the status2d patch.