summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDylan Araps <dylan.araps@gmail.com>2017-12-27 15:57:36 +1100
committerDylan Araps <dylan.araps@gmail.com>2017-12-27 15:57:36 +1100
commit72a7713ca8415f22198ff6abdb60b9ab44f4e974 (patch)
treec7c6008839b5684ecb4677dc3fba8b16481bbb59
parentb8a0986b1bf8925e305b180cf31effe7f0347e0b (diff)
templates: Fix bug
-rw-r--r--pywal/templates/colors-wal-dwm.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/pywal/templates/colors-wal-dwm.h b/pywal/templates/colors-wal-dwm.h
index 449d513..ad0d1b0 100644
--- a/pywal/templates/colors-wal-dwm.h
+++ b/pywal/templates/colors-wal-dwm.h
@@ -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 }},
}};