Correct swallowing configuration
This commit is contained in:
parent
7a953cf6c7
commit
2dda4fe41d
8
config.h
8
config.h
|
@ -5,7 +5,7 @@
|
|||
/* appearance */
|
||||
static const unsigned int borderpx = 3; /* border pixel of windows */
|
||||
static const unsigned int snap = 32; /* snap pixel */
|
||||
static const int swallowfloating = 0; /* 1 means swallow floating windows by default */
|
||||
static const int swallowfloating = 1; /* 1 means swallow floating windows by default */
|
||||
static const int showbar = 1; /* 0 means no bar */
|
||||
static const int topbar = 1; /* 0 means bottom bar */
|
||||
static const char *fonts[] = { "IosevkaTerm Nerd Font:size=12", "Noto Color Emoji" };
|
||||
|
@ -32,9 +32,9 @@ static const Rule rules[] = {
|
|||
/* class instance title tags mask isfloating isterminal noswallow monitor */
|
||||
{ "Gimp", NULL, NULL, 0, 1, 0, 0, -1 },
|
||||
{ "Firefox", NULL, NULL, 1 << 8, 0, 0, -1, -1 },
|
||||
{ "St", NULL, NULL, 0, 0, 1, -1, -1 },
|
||||
{ "st-256color", NULL, NULL, 0, 0, 1, -1, -1 },
|
||||
{ "Alacritty", NULL, NULL, 0, 0, 1, -1, -1 },
|
||||
{ "St", NULL, NULL, 0, 0, 1, 0, -1 },
|
||||
{ "st-256color", NULL, NULL, 0, 0, 1, 0, -1 },
|
||||
{ "Alacritty", NULL, NULL, 0, 0, 1, 0, -1 },
|
||||
{ NULL, NULL, "Event Tester", 0, 0, 0, 1, -1 }, /* xev */
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue