templates: Fix bug

This commit is contained in:
Dylan Araps 2017-12-27 15:55:06 +11:00
parent f96ecf2482
commit b8a0986b1b

View File

@ -10,9 +10,9 @@ static const char urg_fg[] = "{color15}";
static const char urg_bg[] = "{color1}";
static const char urg_border[] = "{color1}";
static const char *colors[][3] = {
static const char *colors[][3] = {{
/* fg bg border */
[SchemeNorm] = { norm_fg, norm_bg, norm_border }, // unfocused wins
[SchemeSel] = { sel_fg, sel_bg, sel_border }, // the focused win
[SchemeUrg] = { urg_fg, urg_bg, urg_border },
};
}};