summaryrefslogtreecommitdiffstats
path: root/config.def.h
diff options
context:
space:
mode:
authorBert Münnich <ber.t@posteo.de>2019-01-23 20:13:25 +0100
committerBert Münnich <ber.t@posteo.de>2019-01-23 20:13:25 +0100
commit9d244da5124bf13046a4f9606b616ab1d8244e0e (patch)
tree6c28825bc202310e09588a818b6e57aa53b99056 /config.def.h
parentf7fc6637f35e43adffb2e1a20ec511dfb9ca7bd1 (diff)
downloadnsxiv-9d244da5124bf13046a4f9606b616ab1d8244e0e.tar.zst
Simplify X resource retrieval
Also makes the color names in config.def.h constant again.
Diffstat (limited to 'config.def.h')
-rw-r--r--config.def.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/config.def.h b/config.def.h
index c7a2389..58e728e 100644
--- a/config.def.h
+++ b/config.def.h
@@ -14,11 +14,11 @@ static const char * const BAR_FONT = "monospace:size=8";
/* colors:
* (see X(7) section "COLOR NAMES" for valid values)
*/
-static char const * WIN_BG_COLOR = "#555555";
-static char const * WIN_FS_COLOR = "#000000";
-static char const * SEL_COLOR = "#EEEEEE";
-static char const * BAR_BG_COLOR = "#222222";
-static char const * BAR_FG_COLOR = "#EEEEEE";
+static const char * const WIN_BG_COLOR = "#555555";
+static const char * const WIN_FS_COLOR = "#000000";
+static const char * const SEL_COLOR = "#EEEEEE";
+static const char * const BAR_BG_COLOR = "#222222";
+static const char * const BAR_FG_COLOR = "#EEEEEE";
#endif
#ifdef _IMAGE_CONFIG