diff options
| author | Dylan Araps <dylan.araps@gmail.com> | 2018-10-17 15:21:25 +1100 |
|---|---|---|
| committer | Dylan Araps <dylan.araps@gmail.com> | 2018-10-17 15:21:25 +1100 |
| commit | 87944f7402a9b6680d7f2b86c769a2abed334e06 (patch) | |
| tree | a2f5b7682e0af9ffd36847888aa9d7105454a508 | |
| parent | 72e3c02a2b40f7d232688cce007a4161a10e54ab (diff) | |
general: remove VTE fix.
| -rw-r--r-- | pywal/sequences.py | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/pywal/sequences.py b/pywal/sequences.py index c691020..0ecb840 100644 --- a/pywal/sequences.py +++ b/pywal/sequences.py @@ -60,21 +60,6 @@ def create_sequences(colors): if OS == "Darwin": sequences += set_iterm_tab_color(colors["special"]["background"]) - else: - # This escape sequence doesn't work in VTE terminals and their parsing of - # unknown sequences is garbage so we need to use some escape sequence - # M A G I C to hide the output. - # \033[s # Save cursor position. - # \033[1000H # Move the cursor off screen. - # \033[8m # Conceal text. - # \033]708;#000000\033\\ # Garbage sequence. - # \033[u # Restore cursor position. - sequences.extend([ - "\033[s\033[1000H\033[8m%s\033[u" % - set_special(708, colors["special"]["background"], "h", alpha), - set_special(13, colors["special"]["cursor"], "l") - ]) - return "".join(sequences) |
