summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pywal/sequences.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pywal/sequences.py b/pywal/sequences.py
index a5a0f44..21553d6 100644
--- a/pywal/sequences.py
+++ b/pywal/sequences.py
@@ -64,7 +64,7 @@ def create_sequences(colors):
# \033[8m # Conceal text.
# \033]708;#000000\007 # Garbage sequence.
# \0338 i # Restore cursor position.
- sequences.append(f"\0337\033[8m\033]708;{colors['special']['background']}\007\0338")
+ sequences.append(f"\0337\033[1000H\033[8m\033]708;{colors['special']['background']}\007\0338")
return "".join(sequences)