diff options
| author | Dylan Araps <dylan.araps@gmail.com> | 2019-01-04 21:28:29 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-01-04 21:28:29 +0200 |
| commit | 16515064896bd556c68198ea3c02e99653e3632c (patch) | |
| tree | 736d2ec633be693f4ed284fb7d2b3b775d530003 | |
| parent | f0de048bb992d15a3cbbca1d7c5fc356ae2f8620 (diff) | |
| parent | d98a551f084146d011c2374f018289ad633cd497 (diff) | |
Merge pull request #331 from rstacruz/patch-1
Fix URxvt borders not respecting background opacity
| -rw-r--r-- | pywal/sequences.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pywal/sequences.py b/pywal/sequences.py index 8d92252..18aa6eb 100644 --- a/pywal/sequences.py +++ b/pywal/sequences.py @@ -54,7 +54,7 @@ def create_sequences(colors): set_special(13, colors["special"]["foreground"], "l"), set_special(17, colors["special"]["foreground"], "l"), set_special(19, colors["special"]["background"], "l"), - set_special(708, colors["special"]["background"], "l"), + set_special(708, colors["special"]["background"], "l", alpha), set_color(232, colors["special"]["background"]), set_color(256, colors["special"]["foreground"]) ]) |
