This commit is contained in:
meml0rz
2024-11-25 03:38:00 +01:00
parent f2039e612b
commit 6bc899e6bc
2 changed files with 16 additions and 16 deletions

View File

@ -1,22 +1,22 @@
static const unsigned int borderpx = 3; /* border pixel of windows */
static const unsigned int borderpx = 1; /* border pixel of windows */
static const unsigned int snap = 32; /* snap pixel */
static const unsigned int gappih = 20; /* horiz inner gap between windows */
static const unsigned int gappiv = 20; /* vert inner gap between windows */
static const unsigned int gappoh = 20; /* horiz outer gap between windows and screen edge */
static const unsigned int gappov = 20; /* vert outer gap between windows and screen edge */
static const unsigned int gappih = 10; /* horiz inner gap between windows */
static const unsigned int gappiv = 10; /* vert inner gap between windows */
static const unsigned int gappoh = 10; /* horiz outer gap between windows and screen edge */
static const unsigned int gappov = 10; /* vert outer gap between windows and screen edge */
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[] = "#1d2021";
static const char col_gray2[] = "#fbf1c7";
static const char *fonts[] = { "TerminessNerdFont:size=10" };
static const char dmenufont[] = "TerminessNerdFont:size=10";
static const char col_gray1[] = "#010101";
static const char col_gray2[] = "#cc241d";
static const char col_gray3[] = "#ffffff";
static const char col_gray4[] = "#eeeeee";
static const char col_cyan[] = "#282828";
static const char col_cyan[] = "#010101";
static const char *colors[][3] = {
/* fg bg border */
[SchemeNorm] = { col_gray3, col_gray1, col_cyan },
[SchemeNorm] = { col_gray3, col_gray1, col_gray1 },
[SchemeSel] = { col_gray4, col_cyan, col_gray2 },
};

View File

@ -4,7 +4,7 @@ VERSION = 6.5
# Customize below to fit your system
# paths
PREFIX = /usr
PREFIX = /usr/local
MANPREFIX = ${PREFIX}/share/man
X11INC = ${PREFIX}/include