summaryrefslogtreecommitdiff
path: root/config.def.h
diff options
context:
space:
mode:
authorP.P.A <adolphs@moselle.moe>2023-07-08 00:34:15 +0200
committerP.P.A <adolphs@moselle.moe>2023-07-08 00:34:15 +0200
commitff2f3dfaccc3d4a2b4f5051548ac62a71ce7429d (patch)
tree7e4fc0d0551f2b3cecc8c1ea3bf5674563ec087c /config.def.h
parentcae46b25bafe946de40006303b39b484431aabbf (diff)
xrdb
Diffstat (limited to 'config.def.h')
-rw-r--r--config.def.h20
1 files changed, 11 insertions, 9 deletions
diff --git a/config.def.h b/config.def.h
index b8b9f1c..e5615b0 100644
--- a/config.def.h
+++ b/config.def.h
@@ -12,15 +12,16 @@ 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[] = "#222222";
-static const char col_gray2[] = "#444444";
-static const char col_gray3[] = "#bbbbbb";
-static const char col_gray4[] = "#eeeeee";
-static const char col_cyan[] = "#005577";
-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 },
};
/* tagging */
@@ -92,6 +93,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 } },
TAGKEYS( XK_1, 0)
TAGKEYS( XK_2, 1)
TAGKEYS( XK_3, 2)