added tagged programs

This commit is contained in:
Shweet 2023-07-05 14:48:32 -04:00
parent afb783b273
commit 9c1b6efecc
5 changed files with 12 additions and 2 deletions

View File

@ -28,8 +28,18 @@ static const Rule rules[] = {
* WM_NAME(STRING) = title * WM_NAME(STRING) = title
*/ */
/* class instance title tags mask isfloating monitor */ /* class instance title tags mask isfloating monitor */
{ "Gimp", NULL, NULL, 0, 1, -1 }, { "Chromium", NULL, NULL, 0, 0, -1 },
{ "Firefox", NULL, NULL, 1 << 8, 0, -1 }, { "chromium", NULL, NULL, 0, 0, -1 },
{ "KeePassXC", NULL, NULL, 1 << 1, 0, -1 },
{ "keepassxc", NULL, NULL, 1 << 1, 0, -1 },
{ "thunderbird", NULL, NULL, 1 << 2, 0, -1 },
{ "Thunderbird", NULL, NULL, 1 << 2, 0, -1 },
{ "Element", NULL, NULL, 1 << 3, 0, -1 },
{ "element-desktop", NULL, NULL, 1 << 3, 0, -1 },
{ "Discord", NULL, NULL, 1 << 4, 0, -1 },
{ "discord", NULL, NULL, 1 << 4, 0, -1 },
{ "Krita", NULL, NULL, 1 << 5, 0, -1 },
{ "krita", NULL, NULL, 1 << 5, 0, -1 },
}; };
/* layout(s) */ /* layout(s) */

BIN
drw.o

Binary file not shown.

BIN
dwm

Binary file not shown.

BIN
dwm.o

Binary file not shown.

BIN
util.o

Binary file not shown.