diff options
| author | Dylan Araps <dylan.araps@gmail.com> | 2020-01-24 08:25:44 +0200 |
|---|---|---|
| committer | Dylan Araps <dylan.araps@gmail.com> | 2020-01-24 08:25:44 +0200 |
| commit | 11758b4548c3b696769f307d132348eaf17d5efe (patch) | |
| tree | 88a590ec3ed979ad570388ee0397f4f23c55acef /pywal | |
| parent | a84b5ec2ab5c5b2dca1680b43e1dac2040f11a72 (diff) | |
sequences: Add support for st. Closes #478
Diffstat (limited to 'pywal')
| -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: |
