diff options
Diffstat (limited to 'config.def.h')
| -rw-r--r-- | config.def.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/config.def.h b/config.def.h index 4edb2a9..41dc3bc 100644 --- a/config.def.h +++ b/config.def.h @@ -6,6 +6,7 @@ static const unsigned int gappx = 10; /* gaps between windows */ static const unsigned int snap = 32; /* snap pixel */ static const int showbar = 1; /* 0 means no bar */ static const int topbar = 1; /* 0 means bottom bar */ +static const int swallowfloating = 0; /* 1 means swallow floating windows by default */ static const int vertpad = 10; /* vertical padding of bar */ static const int sidepad = 10; /* horizontal padding of bar */ static const int barpadding = 10; @@ -31,8 +32,10 @@ static const Rule rules[] = { * WM_CLASS(STRING) = instance, class * WM_NAME(STRING) = title */ - /* class instance title tags mask isfloating monitor */ - { NULL, NULL, NULL, 0, 0, -1 }, + /* class instance title tags mask isfloating isterminal noswallow monitor */ + { NULL, NULL, NULL, 0, 0, 0, 0, -1 }, + { "st", NULL, NULL, 0, 0, 1, 1, -1 }, + { "Kodi", NULL, NULL, 1 << 8, 1, 1, 1, 3 }, }; /* layout(s) */ |