summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorzachir <zachir@librem.one>2022-08-10 00:16:48 -0500
committerzachir <zachir@librem.one>2022-08-10 00:16:48 -0500
commit47d4ba3c7b7b364c7d32353baf7c9d15645f255d (patch)
treeee421645d63c43803b69e16cc5889723d041bee1
parent81439ee0f45ba56835cbfa070453554354ad9fed (diff)
fix issue reading gappx in config.h
-rw-r--r--config.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/config.h b/config.h
index a196ceb..c7ffc6c 100644
--- a/config.h
+++ b/config.h
@@ -15,7 +15,7 @@ static int showbar = 1; /* 0 means no bar */
static int topbar = 1; /* 0 means bottom bar */
static const char *fonts[] = { "mononoki Nerd Font Mono:size=12", "symbola:size=10" };
static const char dmenufont[] = "mononoki Nerd Font Mono:size=12";
-static char normbgcolor[] = "#151219";
+static char normbgcolor[] = "#000000";
static char normbordercolor[] = "#6e6f6c";
static char normfgcolor[] = "#898883";
static char selfgcolor[] = "#c5c3bc";
@@ -171,7 +171,7 @@ ResourcePref resources[] = {
{ "urgbordercolor", STRING, &urgbordercolor },
{ "urgfgcolor", STRING, &urgfgcolor },
{ "borderpx", INTEGER, &borderpx },
- { "gappx", INTEGER, &borderpx },
+ { "gappx", INTEGER, &gappx },
{ "snap", INTEGER, &snap },
{ "showbar", INTEGER, &showbar },
{ "topbar", INTEGER, &topbar },