diff options
| author | Dylan Araps <dylan.araps@gmail.com> | 2018-10-24 17:12:01 +1100 |
|---|---|---|
| committer | Dylan Araps <dylan.araps@gmail.com> | 2018-10-24 17:12:01 +1100 |
| commit | da0e2ff05a885422dfc61fc87ae3c68ec713751b (patch) | |
| tree | 6cbfc6b5ab7d7f48379093cfe4e7540f994f8ef6 /pywal/sequences.py | |
| parent | 18f05944ed1d7b43ae29d233c76076bd198ab6c4 (diff) | |
fix urxvt bg
Diffstat (limited to 'pywal/sequences.py')
| -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 56c1b59..8d92252 100644 --- a/pywal/sequences.py +++ b/pywal/sequences.py @@ -46,7 +46,7 @@ def create_sequences(colors): # Special colors. # Source: https://goo.gl/KcoQgP # 10 = foreground, 11 = background, 12 = cursor foregound - # 13 = mouse foreground + # 13 = mouse foreground, 708 = background border color. sequences.extend([ set_special(10, colors["special"]["foreground"], "g"), set_special(11, colors["special"]["background"], "h", alpha), @@ -54,6 +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_color(232, colors["special"]["background"]), set_color(256, colors["special"]["foreground"]) ]) |
