Noah Vogt 4 年之前
父节点
当前提交
82e912d73f
共有 2 个文件被更改,包括 6 次插入5 次删除
  1. 5 4
      config.h
  2. 1 1
      config.mk

+ 5 - 4
config.h

@@ -19,16 +19,17 @@ static const char *colors[][3]      = {
 };
 
 /* tagging */
-static const char *tags[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" };
+static const char *tags[] = { ">_", "🦊", "✏", "4", "5", "6", "7", "📭", "🗑" };
 
 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 */
+	{ "Gimp",     NULL,       NULL,       0,            1,          -1 },
+	{ "Firefox",  NULL,       NULL,       1 << 8,       0,          -1 },
+	{ "st",       NULL,       NULL,       NULL,         0,          -1 },
 };
 
 /* layout(s) */

+ 1 - 1
config.mk

@@ -22,7 +22,7 @@ FREETYPEINC = /usr/include/freetype2
 
 # includes and libs
 INCS = -I${X11INC} -I${FREETYPEINC}
-LIBS = -L${X11LIB} -lX11 ${XINERAMALIBS} ${FREETYPELIBS} -lX11-xcb -lxcb -lxcb-res
+LIBS = -L${X11LIB} -lX11 ${XINERAMALIBS} ${FREETYPELIBS}
 
 # flags
 CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_POSIX_C_SOURCE=200809L -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS}