From d32858ad38cb717c225937109311f3401bbff2eb Mon Sep 17 00:00:00 2001 From: meml0rz Date: Fri, 1 Nov 2024 02:13:48 +0100 Subject: [PATCH] changed theme to dark --- config.def.h | 6 +++--- config.mk | 10 +++++----- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/config.def.h b/config.def.h index aa8dec2..f19a7d1 100644 --- a/config.def.h +++ b/config.def.h @@ -7,9 +7,9 @@ static const unsigned int gappov = 20; /* vert outer gap between window static int smartgaps = 0; /* 1 means no outer gap when there is only one window */ static const int showbar = 1; /* 0 means no bar */ static const int topbar = 1; /* 0 means bottom bar */ -static const char *fonts[] = { "monospace:size=10" }; -static const char dmenufont[] = "monospace:size=10"; -static const char col_gray1[] = "#101010"; +static const char *fonts[] = { "Terminus:size=10" }; +static const char dmenufont[] = "Terminus:size=10"; +static const char col_gray1[] = "#000000"; static const char col_gray2[] = "#fbf1c7"; static const char col_gray3[] = "#ffffff"; static const char col_gray4[] = "#eeeeee"; diff --git a/config.mk b/config.mk index 340a586..4990038 100644 --- a/config.mk +++ b/config.mk @@ -4,22 +4,22 @@ VERSION = 6.5 # Customize below to fit your system # paths -PREFIX = /usr +PREFIX = /usr/X11R6 MANPREFIX = ${PREFIX}/share/man X11INC = ${PREFIX}/include X11LIB = ${PREFIX}/lib # Xinerama, comment if you don't want it -#XINERAMALIBS = -lXinerama -#XINERAMAFLAGS = -DXINERAMA +XINERAMALIBS = -lXinerama +XINERAMAFLAGS = -DXINERAMA # freetype FREETYPELIBS = -lfontconfig -lXft FREETYPEINC = ${PREFIX}/include/freetype2 # OpenBSD (uncomment) -#FREETYPEINC = ${X11INC}/freetype2 -#MANPREFIX = ${PREFIX}/man +FREETYPEINC = ${X11INC}/freetype2 +MANPREFIX = ${PREFIX}/man # includes and libs INCS = -I${X11INC} -I${FREETYPEINC}