From 9f219c6a08a0cdfd587147ebb3917a611d19ae0e Mon Sep 17 00:00:00 2001 From: Sravan Balaji Date: Tue, 24 Nov 2020 10:43:39 -0500 Subject: [PATCH] Swall Fix & Make Clean - Fix alacritty swallow rules - Remove config.h on make clean --- Makefile | 2 +- config.def.h | 6 ++---- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 77bcbc0..c05dbdd 100644 --- a/Makefile +++ b/Makefile @@ -26,7 +26,7 @@ dwm: ${OBJ} ${CC} -o $@ ${OBJ} ${LDFLAGS} clean: - rm -f dwm ${OBJ} dwm-${VERSION}.tar.gz + rm -f dwm ${OBJ} dwm-${VERSION}.tar.gz config.h dist: clean mkdir -p dwm-${VERSION} diff --git a/config.def.h b/config.def.h index 44c8038..e1a9e7f 100644 --- a/config.def.h +++ b/config.def.h @@ -65,10 +65,8 @@ static const Rule rules[] = { * WM_NAME(STRING) = title */ /* class instance title tags mask isfloating isterminal noswallow monitor */ - { "origin", NULL, NULL, 0, 1, 0, 0, -1 }, - { "alacritty", NULL, NULL, 0, 0, 1, 0, -1 }, - // { "Gimp", NULL, NULL, 0, 1, 0, 0, -1 }, - // { "Firefox", NULL, NULL, 1 << 8, 0, 0, -1, -1 }, + { NULL, NULL, "Origin", 0, 1, 0, 0, -1 }, + { "Alacritty", NULL, NULL, 0, 0, 0, 1, -1 }, { NULL, NULL, "Event Tester", 0, 0, 0, 1, -1 }, /* xev */ };