colors: Fix transparency in urxvt. Closes #154

This commit is contained in:
Dylan Araps 2018-01-03 07:22:32 +11:00
parent bba85dc406
commit aadb470931

View File

@ -61,8 +61,8 @@ def create_sequences(colors):
# \033[8m # Conceal text. # \033[8m # Conceal text.
# \033]708;#000000\033\\ # Garbage sequence. # \033]708;#000000\033\\ # Garbage sequence.
# \033[u # Restore cursor position. # \033[u # Restore cursor position.
sequences.extend(["\033[s\033[1000H\033[8m\033]708;%s\234\033[u" % sequences.extend(["\033[s\033[1000H\033[8m%s\033[u" %
colors['special']['background'], set_special(708, colors['special']['background']),
set_special(13, colors["special"]["cursor"], "l")]) set_special(13, colors["special"]["cursor"], "l")])
if OS == "Darwin": if OS == "Darwin":