Compare commits

..

No commits in common. "d8074c9a2d5ffd79d0fbdfd3325caa7f274d34f3" and "a99c0b68b448a0122c6c8e3d31cf5006b2a67c17" have entirely different histories.

3 changed files with 29 additions and 29 deletions

View file

@ -639,10 +639,10 @@ static const BarRule barrules[] = {
#endif // BAR_EXTRASTATUS_PATCH
#if BAR_FLEXWINTITLE_PATCH
#if BAR_WINTITLE_HIDDEN_PATCH
{ -1, 1, BAR_ALIGN_RIGHT, width_wintitle_hidden, draw_wintitle_hidden, click_wintitle_hidden, NULL, "wintitle_hidden" },
{ -1, 1, BAR_ALIGN_RIGHT_RIGHT, width_wintitle_hidden, draw_wintitle_hidden, click_wintitle_hidden, NULL, "wintitle_hidden" },
#endif
#if BAR_WINTITLE_FLOATING_PATCH
{ -1, 0, BAR_ALIGN_LEFT, width_wintitle_floating, draw_wintitle_floating, click_wintitle_floating, NULL, "wintitle_floating" },
{ -1, 1, BAR_ALIGN_LEFT, width_wintitle_floating, draw_wintitle_floating, click_wintitle_floating, NULL, "wintitle_floating" },
#endif // BAR_WINTITLE_FLOATING_PATCH
#endif // BAR_FLEXWINTITLE_PATCH
};

View file

@ -70,28 +70,28 @@ loadxrdb()
XRDB_LOAD_COLOR("dwm.color0", normDWDLbgcolor);
XRDB_LOAD_COLOR("dwm.color0", normSPRLbgcolor);
XRDB_LOAD_COLOR("dwm.color0", normfloatbgcolor);
XRDB_LOAD_COLOR("dwm.color3", actTTBbgcolor);
XRDB_LOAD_COLOR("dwm.color3", actLTRbgcolor);
XRDB_LOAD_COLOR("dwm.color3", actMONObgcolor);
XRDB_LOAD_COLOR("dwm.color3", actGRIDbgcolor);
XRDB_LOAD_COLOR("dwm.color3", actGRD1bgcolor);
XRDB_LOAD_COLOR("dwm.color3", actGRD2bgcolor);
XRDB_LOAD_COLOR("dwm.color3", actGRDMbgcolor);
XRDB_LOAD_COLOR("dwm.color3", actHGRDbgcolor);
XRDB_LOAD_COLOR("dwm.color3", actDWDLbgcolor);
XRDB_LOAD_COLOR("dwm.color3", actSPRLbgcolor);
XRDB_LOAD_COLOR("dwm.color3", actfloatbgcolor);
XRDB_LOAD_COLOR("dwm.color6", selTTBbgcolor);
XRDB_LOAD_COLOR("dwm.color6", selLTRbgcolor);
XRDB_LOAD_COLOR("dwm.color6", selMONObgcolor);
XRDB_LOAD_COLOR("dwm.color6", selGRIDbgcolor);
XRDB_LOAD_COLOR("dwm.color6", selGRD1bgcolor);
XRDB_LOAD_COLOR("dwm.color6", selGRD2bgcolor);
XRDB_LOAD_COLOR("dwm.color6", selGRDMbgcolor);
XRDB_LOAD_COLOR("dwm.color6", selHGRDbgcolor);
XRDB_LOAD_COLOR("dwm.color6", selDWDLbgcolor);
XRDB_LOAD_COLOR("dwm.color6", selSPRLbgcolor);
XRDB_LOAD_COLOR("dwm.color6", selfloatbgcolor);
XRDB_LOAD_COLOR("dwm.color1", actTTBbgcolor);
XRDB_LOAD_COLOR("dwm.color1", actLTRbgcolor);
XRDB_LOAD_COLOR("dwm.color1", actMONObgcolor);
XRDB_LOAD_COLOR("dwm.color1", actGRIDbgcolor);
XRDB_LOAD_COLOR("dwm.color1", actGRD1bgcolor);
XRDB_LOAD_COLOR("dwm.color1", actGRD2bgcolor);
XRDB_LOAD_COLOR("dwm.color1", actGRDMbgcolor);
XRDB_LOAD_COLOR("dwm.color1", actHGRDbgcolor);
XRDB_LOAD_COLOR("dwm.color1", actDWDLbgcolor);
XRDB_LOAD_COLOR("dwm.color1", actSPRLbgcolor);
XRDB_LOAD_COLOR("dwm.color1", actfloatbgcolor);
XRDB_LOAD_COLOR("dwm.color2", selTTBbgcolor);
XRDB_LOAD_COLOR("dwm.color2", selLTRbgcolor);
XRDB_LOAD_COLOR("dwm.color2", selMONObgcolor);
XRDB_LOAD_COLOR("dwm.color2", selGRIDbgcolor);
XRDB_LOAD_COLOR("dwm.color2", selGRD1bgcolor);
XRDB_LOAD_COLOR("dwm.color2", selGRD2bgcolor);
XRDB_LOAD_COLOR("dwm.color2", selGRDMbgcolor);
XRDB_LOAD_COLOR("dwm.color2", selHGRDbgcolor);
XRDB_LOAD_COLOR("dwm.color2", selDWDLbgcolor);
XRDB_LOAD_COLOR("dwm.color2", selSPRLbgcolor);
XRDB_LOAD_COLOR("dwm.color2", selfloatbgcolor);
#endif // BAR_FLEXWINTITLE_PATCH
#if BAR_STATUS2D_XRDB_TERMCOLORS_PATCH && BAR_STATUS2D_PATCH
XRDB_LOAD_COLOR("color0", termcol0);

View file

@ -19,7 +19,7 @@
* Awesomebar takes precedence over fancybar.
* https://dwm.suckless.org/patches/awesomebar/
*/
#define BAR_AWESOMEBAR_PATCH 0
#define BAR_AWESOMEBAR_PATCH 1
/* This patch depends on statuscmd patch and adds integration with a (patched)
* dwmblocks instance to give a clickable status bar. One must not necessarily
@ -65,7 +65,7 @@
* taps into the many layout options that flextile-deluxe offers to produce a window
* title section in the bar that is representative of what is shown on screen.
*/
#define BAR_FLEXWINTITLE_PATCH 1
#define BAR_FLEXWINTITLE_PATCH 0
/* This patch adds a context menu for layout switching.
* - xmenu needs to be installed.
@ -201,7 +201,7 @@
#define BAR_WINICON_PATCH 1
/* Show window title in bar */
#define BAR_WINTITLE_PATCH 1
#define BAR_WINTITLE_PATCH 1
/* Shows window titles in the bar, but only for floating clients.
* This depends on code from the flexwintitle patch.
@ -209,7 +209,7 @@
* with the corresponding hidden patch then these two will overlap unless the width of the
* modules are controlled.
*/
#define BAR_WINTITLE_FLOATING_PATCH 0
#define BAR_WINTITLE_FLOATING_PATCH 0
/* Shows window titles in the bar, but only for floating clients.
* This depends on code from the flexwintitle patch.
@ -217,7 +217,7 @@
* with the corresponding floating patch then these two will overlap unless the width of the
* modules are controlled.
*/
#define BAR_WINTITLE_HIDDEN_PATCH 0
#define BAR_WINTITLE_HIDDEN_PATCH 0
/* Title bar modules such as wintitle (default), fancybar and awesomebar
* do not by default add left and/or right padding as they take up the