commit 402e65cd42b415616aa8ed75ca0d1032712153e9
parent d917ba882dcbae0a5ace02dc6f018f33db12dfbc
Author: grouse <bdmfegys@duck.com>
Date: Sun, 26 Nov 2023 13:40:12 -0500
fixed config.def.h rejects
Diffstat:
1 file changed, 12 insertions(+), 11 deletions(-)
diff --git a/config.def.h b/config.def.h
@@ -14,17 +14,17 @@ static const int systraypinningfailfirst = 1; /* 1: if pinning fails, display
static const int showsystray = 1; /* 0 means no systray */
static const char *fonts[] = { "Inconsolata-ExpandedBold:pixelsize=22" };
static const char dmenufont[] = "Inconsolata-ExpandedBold:pixelsize=22";
-static const char col_gray1[] = "#C5C8C6";
-static const char col_gray2[] = "#444444";
-static const char col_gray3[] = "#1d1d1d";
-static const char col_gray4[] = "#C5C8C6";
-static const char col_cyan[] = "#1d1d1d";
-static const unsigned int baralpha = 0x70;
-static const unsigned int borderalpha = OPAQUE;
-static const char *colors[][3] = {
- /* fg bg border */
- [SchemeNorm] = { col_gray3, col_gray1, col_gray2 },
- [SchemeSel] = { col_gray4, col_cyan, col_cyan },
+
+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 *colors[][3] = {
+ /* fg bg border */
+ [SchemeNorm] = { normfgcolor, normbgcolor, normbordercolor },
+ [SchemeSel] = { selfgcolor, selbgcolor, selbordercolor },
};
typedef struct {
const char *name;
@@ -140,6 +140,7 @@ static const Key keys[] = {
{ MODKEY, XK_period, focusmon, {.i = +1 } },
{ MODKEY|ShiftMask, XK_comma, tagmon, {.i = -1 } },
{ MODKEY|ShiftMask, XK_period, tagmon, {.i = +1 } },
+ { MODKEY, XK_F5, xrdb, {.v = NULL } },
{ MODKEY, XK_y, togglescratch, {.ui = 0 } },
{ MODKEY, XK_u, togglescratch, {.ui = 1 } },
{ MODKEY|ShiftMask, XK_u, togglescratch, {.ui = 2 } },