Apply swallow patch and fix text positioning for statuscolors patch
This commit is contained in:
commit
fe1e2224bb
4 changed files with 261 additions and 21 deletions
20
config.h
20
config.h
|
@ -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) */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue