From 31ae26518b97e696076d57adbcf3ab6dd2473472 Mon Sep 17 00:00:00 2001 From: dogeystamp Date: Mon, 12 Apr 2021 19:05:47 -0400 Subject: [PATCH] [dwm] Actually fix swallow For some reason, last fix worked temporarily then broke --- suckless/dwm/config.def.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/suckless/dwm/config.def.h b/suckless/dwm/config.def.h index 69c77f6..806c5ea 100644 --- a/suckless/dwm/config.def.h +++ b/suckless/dwm/config.def.h @@ -46,7 +46,7 @@ static const Rule rules[] = { */ /* class instance title tags mask isfloating isterminal noswallow monitor */ { "Firefox", NULL, NULL, 1 << 8, 0, 0, -1, -1 }, - { "st", NULL, NULL, 0, 0, 1, 1, -1 }, + { NULL, NULL, "st", 0, 0, 1, 1, -1 }, { NULL, NULL, "Event Tester", 0, 0, 0, 1, -1 }, /* xev */ };