Apply swallow patch and fix text positioning for statuscolors patch

This commit is contained in:
Alex Selimov 2023-10-09 23:32:19 -04:00
commit fe1e2224bb
4 changed files with 261 additions and 21 deletions

View file

@ -7,6 +7,7 @@ static const unsigned int gappih = 10; /* horiz inner gap between windo
static const unsigned int gappiv = 10; /* vert inner gap between windows */
static const unsigned int gappoh = 10; /* horiz outer gap between windows and screen edge */
static const unsigned int gappov = 10; /* vert outer gap between windows and screen edge */
static const int swallowfloating = 0; /* 1 means swallow floating windows by default */
static int smartgaps = 1; /* 1 means no outer gap when there is only one window */
static const int showbar = 1; /* 0 means no bar */
@ -59,15 +60,16 @@ static const Rule rules[] = {
* WM_CLASS(STRING) = instance, class
* WM_NAME(STRING) = title
*/
/* class instance title tags mask isfloating monitor */
{ "Gimp", NULL, NULL, 0, 1, -1 },
{ "Ovito", NULL, NULL, 1 << 6, 0, 0 },
{ "ParaView", NULL, NULL, 1 << 6, 0, 0 },
{ "Brave-browser", NULL, NULL, 1 << 5, 0, 0 },
{ "mpv", NULL, NULL, 0, 1, -1 },
{ "sxiv", NULL, NULL, 0, 1, -1 },
{ "Sxiv", NULL, NULL, 0, 1, -1 },
{ "matplotlib", NULL, NULL, 0, 1, -1 }
/* class instance title tags mask isfloating 0, monitor */
{ "Gimp", NULL, NULL, 0, 1, 0, -1 },
{ "Ovito", NULL, NULL, 1 << 6, 0, 0, 0 },
{ "ParaView", NULL, NULL, 1 << 6, 0, 0, 0 },
{ "Brave-browser", NULL, NULL, 1 << 5, 0, 0, 0 },
{ "mpv", NULL, NULL, 0, 1, 0, -1 },
{ "sxiv", NULL, NULL, 0, 1, 0, -1 },
{ "Sxiv", NULL, NULL, 0, 1, 0, -1 },
{ "matplotlib", NULL, NULL, 0, 1, 0, -1 },
{ "St", NULL, NULL, 0, 0, 1, 0, -1 },
};
/* layout(s) */