summaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
authormoadAlami <moadalami40@gmail.com>2024-02-11 11:58:16 +0100
committermoadAlami <moadalami40@gmail.com>2024-02-11 11:58:16 +0100
commit2b0a66aa0e9aefb447c36f966e83c4648ccbd5f9 (patch)
tree4637d3e007ad6ac8367c4a29366085c13092cc2e /config.h
parent70876c5eda5c241acf3580be9ca4e47af1087ffd (diff)
swallow patch
Diffstat (limited to 'config.h')
-rw-r--r--config.h15
1 files changed, 9 insertions, 6 deletions
diff --git a/config.h b/config.h
index c1082be..7d0ac8b 100644
--- a/config.h
+++ b/config.h
@@ -3,6 +3,7 @@
/* appearance */
static const unsigned int borderpx = 4; /* 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 showbar = 1; /* 0 means no bar */
static const int topbar = 1; /* 0 means bottom bar */
static const int user_bh = 2; /* 2 is the default spacing around the bar's font */
@@ -43,12 +44,14 @@ static const Rule rules[] = {
* WM_CLASS(STRING) = instance, class
* WM_NAME(STRING) = title
*/
- /* class instance title tags mask isfloating monitor */
- { "zoom", NULL, NULL, 1 << 0, 0, -1 },
- { "Gimp", NULL, NULL, 1 << 5, 1, -1 },
- { "discord", NULL, NULL, 1 << 3, 0, -1 },
- { NULL, NULL, "Steam", 1 << 4, 0, -1 },
- { "qgis", NULL, NULL, 1 << 7, 0, -1 },
+ /* class instance title tags mask isfloating isterminal noswallow monitor */
+ { "zoom", NULL, NULL, 1 << 0, 0, 0, 0, -1 },
+ { "Gimp", NULL, NULL, 1 << 5, 1, 0, 0, -1 },
+ { "discord", NULL, NULL, 1 << 3, 0, 0, 0, -1 },
+ { NULL, NULL, "Steam", 1 << 4, 0, 0, 0, -1 },
+ { "qgis", NULL, NULL, 1 << 7, 0, 0, 0, -1 },
+ { NULL, NULL, "st", 0, 0, 1, 0, -1 },
+ { NULL, NULL, "Event Tester", 0, 0, 0, 1, -1 }, /* xev */
};
static const float mfact = 0.55; /* factor of master area size [0.05..0.95] */