mirror of
https://github.com/dylanaraps/pywal.git
synced 2025-01-10 07:58:12 +01:00
templates: Fix bug
This commit is contained in:
parent
b8a0986b1b
commit
72a7713ca8
@ -12,7 +12,7 @@ static const char urg_border[] = "{color1}";
|
||||
|
||||
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 },
|
||||
[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 }},
|
||||
}};
|
||||
|
Loading…
Reference in New Issue
Block a user