Correct swallowing configuration

This commit is contained in:
tosu 2023-08-27 06:12:51 +02:00
parent 7a953cf6c7
commit 2dda4fe41d
Signed by: tosu
GPG Key ID: C00746F2E0F36492
1 changed files with 4 additions and 4 deletions

View File

@ -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 */
};