commit 8a9aa42861807f647ff28eb25fd9f95ab7246ae2
parent dc33163f28cbf714eb33eac14add04885e5c05b3
Author: C. Beau Hilton <cbeauhilton@gmail.com>
Date: Thu, 25 Jun 2020 12:30:25 -0500
clean up language
Diffstat:
1 file changed, 11 insertions(+), 11 deletions(-)
diff --git a/config.h b/config.h
@@ -11,13 +11,13 @@ static const int smartgaps = 0; /* 1 means no outer gap when the
static const int showbar = 1; /* 0 means no bar */
static const int topbar = 1; /* 0 means bottom bar */
static const char *fonts[] = { "IBM Plex Mono:pixelsize=12:antialias=true:autohint=true", "JoyPixels:pixelsize=10:antialias=true:autohint=true" };
-static char dmenufont[] = "IBM Plex Mono:pixelsize=12:antialias=true:autohint=true";
-static char normbgcolor[] = "#222222";
-static char normbordercolor[] = "#444444";
-static char normfgcolor[] = "#bbbbbb";
-static char selfgcolor[] = "#eeeeee";
-static char selbordercolor[] = "#005577";
-static char selbgcolor[] = "#005577";
+static char dmenufont[] = { "IBM Plex Mono:pixelsize=12:antialias=true:autohint=true", "JoyPixels:pixelsize=10:antialias=true:autohint=true" };
+static char normbgcolor[] = "#181818";
+static char normbordercolor[] = "#181818";
+static char normfgcolor[] = "#777777";
+static char selfgcolor[] = "#dedede";
+static char selbordercolor[] = "#181818";
+static char selbgcolor[] = "#181818";
static char *colors[][3] = {
/* fg bg border */
[SchemeNorm] = { normfgcolor, normbgcolor, normbordercolor },
@@ -45,16 +45,16 @@ static const int resizehints = 1; /* 1 means respect size hints in tiled resi
#include "vanitygaps.c"
static const Layout layouts[] = {
/* symbol arrange function */
- { "[]=", tile }, /* Default: Master on left, slaves on right */
- { "TTT", bstack }, /* Master on top, slaves on bottom */
+ { "[]=", tile }, /* Default: Master on left, stack on right */
+ { "TTT", bstack }, /* Master on top, stack on bottom */
{ "[@]", spiral }, /* Fibonacci spiral */
{ "[\\]", dwindle }, /* Decreasing in size right and leftward */
- { "H[]", deck }, /* Master on left, slaves in monocle-like mode on right */
+ { "H[]", deck }, /* Master on left, stack in monocle-like mode on right */
{ "[M]", monocle }, /* All windows on top of eachother */
- { "|M|", centeredmaster }, /* Master in middle, slaves on sides */
+ { "|M|", centeredmaster }, /* Master in middle, stack on sides */
{ ">M>", centeredfloatingmaster }, /* Same but master floats */
{ "><>", NULL }, /* no layout function means floating behavior */