diff options
| author | Dylan Araps <[email protected]> | 2020-01-24 08:25:44 +0200 |
|---|---|---|
| committer | Dylan Araps <[email protected]> | 2020-01-24 08:25:44 +0200 |
| commit | 11758b4548c3b696769f307d132348eaf17d5efe (patch) | |
| tree | 88a590ec3ed979ad570388ee0397f4f23c55acef | |
| parent | misc: fix lint (diff) | |
| download | pywal-11758b4548c3b696769f307d132348eaf17d5efe.tar.xz pywal-11758b4548c3b696769f307d132348eaf17d5efe.zip | |
sequences: Add support for st. Closes #478
| -rw-r--r-- | pywal/sequences.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pywal/sequences.py b/pywal/sequences.py index b5028bc..e7047b8 100644 --- a/pywal/sequences.py +++ b/pywal/sequences.py @@ -55,7 +55,8 @@ def create_sequences(colors, vte_fix=False): set_special(17, colors["special"]["foreground"], "k"), set_special(19, colors["special"]["background"], "m"), set_color(232, colors["special"]["background"]), - set_color(256, colors["special"]["foreground"]) + set_color(256, colors["special"]["foreground"]), + set_color(257, colors["special"]["background"]), ]) if not vte_fix: |