Introduction
Introduction Statistics Contact Development Disclaimer Help
config.def.h: style improvement, use color Scheme enum - dwm - dynamic window m…
git clone git://git.suckless.org/dwm
Log
Files
Refs
README
LICENSE
---
commit 56a31dc4a7be459e3a1ea06d45427e1a4087a1a6
parent 7af4d439bdb5a2e40aca69446a3367bd71431c45
Author: Hiltjo Posthuma <[email protected]>
Date: Tue, 28 Jun 2016 18:04:56 +0200
config.def.h: style improvement, use color Scheme enum
Diffstat:
M config.def.h | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/config.def.h b/config.def.h
@@ -12,10 +12,10 @@ 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 */
- { col_gray3, col_gray1, col_gray2}, /* normal */
- { col_gray4, col_cyan, col_cyan }, /* selected */
+static const char *colors[SchemeLast][3] = {
+ /* fg bg border */
+ [SchemeNorm] = { col_gray3, col_gray1, col_gray2 },
+ [SchemeSel] = { col_gray4, col_cyan, col_cyan },
};
/* tagging */
You are viewing proxied material from suckless.org. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.