diff options
author | eug-vs <eugene@eug-vs.xyz> | 2022-04-02 17:14:16 +0300 |
---|---|---|
committer | eug-vs <eugene@eug-vs.xyz> | 2022-04-02 17:14:16 +0300 |
commit | c84ac19422e3cca5e8a2a1898304d7c55883a07b (patch) | |
tree | 30c1be0fd94e118cfa6050881a47c9fb96b330c3 /config.def.h | |
parent | cad1f11826b0f4a7fe4ee2f8e9328367e10a6140 (diff) | |
download | dwm-c84ac19422e3cca5e8a2a1898304d7c55883a07b.tar.gz |
fix: add missing terminal flag to st
Diffstat (limited to 'config.def.h')
-rw-r--r-- | config.def.h | 8 |
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) */ |