diff options
-rw-r--r-- | config.h | 8 | ||||
-rw-r--r-- | config.mk | 2 |
2 files changed, 5 insertions, 5 deletions
@@ -5,12 +5,12 @@ static const unsigned int borderpx = 1; /* border pixel of windows */ static const unsigned int snap = 32; /* snap pixel */ static const int showbar = 1; /* 0 means no bar */ static const int topbar = 0; /* 0 means bottom bar */ -static const char *fonts[] = { ":size=10" }; +static const char *fonts[] = { "monospace:size=12" }; static const char dmenufont[] = ":size=10"; -static const char col_gray1[] = "#333333"; -static const char col_gray2[] = "#444444"; +static const char col_gray1[] = "#222222"; +static const char col_gray2[] = "#333333"; static const char col_gray3[] = "#eaeaea"; -static const char col_gray4[] = "#777777"; +static const char col_gray4[] = "#888888"; static const char *colors[][3] = { /* fg bg border */ [SchemeNorm] = { col_gray3, col_gray1, col_gray2 }, @@ -18,7 +18,7 @@ XINERAMAFLAGS = -DXINERAMA FREETYPELIBS = -lfontconfig -lXft FREETYPEINC = /usr/include/freetype2 # OpenBSD (uncomment) -#FREETYPEINC = ${X11INC}/freetype2 +FREETYPEINC = ${X11INC}/freetype2 # includes and libs INCS = -I${X11INC} -I${FREETYPEINC} |