diff options
| author | Dylan Araps <[email protected]> | 2017-12-27 21:07:13 +1100 |
|---|---|---|
| committer | Dylan Araps <[email protected]> | 2017-12-27 21:07:13 +1100 |
| commit | 0e59e34d8ed15480bd61595be1e98b387770676e (patch) | |
| tree | 708eac80054d24514bd76e482e4d06a7cf611f5a | |
| parent | templates: Fix bug (diff) | |
| download | pywal-0e59e34d8ed15480bd61595be1e98b387770676e.tar.xz pywal-0e59e34d8ed15480bd61595be1e98b387770676e.zip | |
st: Fix bg color not updating
| -rw-r--r-- | pywal/templates/colors-wal-st.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pywal/templates/colors-wal-st.h b/pywal/templates/colors-wal-st.h index 65ad6f0..acb2863 100644 --- a/pywal/templates/colors-wal-st.h +++ b/pywal/templates/colors-wal-st.h @@ -28,6 +28,6 @@ const char *colorname[] = {{ /* Default colors (colorname index) * foreground, background, cursor */ - unsigned int defaultbg = 256; + unsigned int defaultbg = 0; unsigned int defaultfg = 257; unsigned int defaultcs = 258; |