aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDylan Araps <[email protected]>2017-12-27 15:55:06 +1100
committerDylan Araps <[email protected]>2017-12-27 15:55:06 +1100
commitb8a0986b1bf8925e305b180cf31effe7f0347e0b (patch)
tree61fcc2ba73bebbbd49c9e7924d9a3201644824cf
parenttemplates: Add template for dwm. (diff)
downloadpywal-b8a0986b1bf8925e305b180cf31effe7f0347e0b.tar.xz
pywal-b8a0986b1bf8925e305b180cf31effe7f0347e0b.zip
templates: Fix bug
-rw-r--r--pywal/templates/colors-wal-dwm.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/pywal/templates/colors-wal-dwm.h b/pywal/templates/colors-wal-dwm.h
index c9f4adc..449d513 100644
--- a/pywal/templates/colors-wal-dwm.h
+++ b/pywal/templates/colors-wal-dwm.h
@@ -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 },
-};
+}};