aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoreug-vs <eugene@eug-vs.xyz>2022-04-02 17:14:16 +0300
committereug-vs <eugene@eug-vs.xyz>2022-04-02 17:14:16 +0300
commitc84ac19422e3cca5e8a2a1898304d7c55883a07b (patch)
tree30c1be0fd94e118cfa6050881a47c9fb96b330c3
parentcad1f11826b0f4a7fe4ee2f8e9328367e10a6140 (diff)
downloaddwm-c84ac19422e3cca5e8a2a1898304d7c55883a07b.tar.gz
fix: add missing terminal flag to st
-rw-r--r--config.def.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/config.def.h b/config.def.h
index 41cfc16..f2c79ed 100644
--- a/config.def.h
+++ b/config.def.h
@@ -22,16 +22,16 @@ static const char *colors[][3] = {
};
/* tagging */
-static const char *tags[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" };
+static const char *tags[] = { "1", "2", "3", "4", "5" };
static const Rule rules[] = {
/* xprop(1):
* WM_CLASS(STRING) = instance, class
* WM_NAME(STRING) = title
*/
- /* class instance title tags mask isfloating monitor */
- { "Gimp", NULL, NULL, 0, 1, -1 },
- { "Firefox", NULL, NULL, 1 << 8, 0, -1 },
+ /* class instance title tags mask isfloating isterminal noswallow monitor */
+ { "St", NULL, NULL, 0, 0, 1, 0, -1 },
+ { NULL, NULL, "Event Tester", 0, 0, 0, 1, -1 }, /* xev */
};
/* layout(s) */