Swall Fix & Make Clean

- Fix alacritty swallow rules
- Remove config.h on make clean
This commit is contained in:
Sravan Balaji
2020-11-24 10:43:39 -05:00
parent 904554033c
commit 9f219c6a08
2 changed files with 3 additions and 5 deletions

View File

@@ -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}

View File

@@ -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 */
};