changed theme to dark

This commit is contained in:
meml0rz
2024-11-01 02:13:48 +01:00
parent 3032855bad
commit d32858ad38
2 changed files with 8 additions and 8 deletions

View File

@ -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";

View File

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