diff options
| author | Rico Sta. Cruz <[email protected]> | 2018-11-01 18:03:38 +0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2018-11-01 18:03:38 +0800 |
| commit | d98a551f084146d011c2374f018289ad633cd497 (patch) | |
| tree | 736d2ec633be693f4ed284fb7d2b3b775d530003 | |
| parent | docs: update (diff) | |
| download | pywal-d98a551f084146d011c2374f018289ad633cd497.tar.xz pywal-d98a551f084146d011c2374f018289ad633cd497.zip | |
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"]) ]) |