Skip to content
This repository was archived by the owner on Apr 26, 2024. It is now read-only.

Commit da0e2ff

Browse files
committed
fix urxvt bg
1 parent 18f0594 commit da0e2ff

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pywal/sequences.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -46,14 +46,15 @@ def create_sequences(colors):
4646
# Special colors.
4747
# Source: https://goo.gl/KcoQgP
4848
# 10 = foreground, 11 = background, 12 = cursor foregound
49-
# 13 = mouse foreground
49+
# 13 = mouse foreground, 708 = background border color.
5050
sequences.extend([
5151
set_special(10, colors["special"]["foreground"], "g"),
5252
set_special(11, colors["special"]["background"], "h", alpha),
5353
set_special(12, colors["special"]["cursor"], "l"),
5454
set_special(13, colors["special"]["foreground"], "l"),
5555
set_special(17, colors["special"]["foreground"], "l"),
5656
set_special(19, colors["special"]["background"], "l"),
57+
set_special(708, colors["special"]["background"], "l"),
5758
set_color(232, colors["special"]["background"]),
5859
set_color(256, colors["special"]["foreground"])
5960
])

0 commit comments

Comments
 (0)