diff options
| author | Dylan Araps <[email protected]> | 2017-12-27 20:07:58 +1100 |
|---|---|---|
| committer | Dylan Araps <[email protected]> | 2017-12-27 20:07:58 +1100 |
| commit | 69ad38997d3e490292c8ffffccefc96c2a62a8ce (patch) | |
| tree | 7500b9afa9f66abd9ea44a35127bb0f0ecea97ae | |
| parent | sequences: cya later (diff) | |
| download | pywal-69ad38997d3e490292c8ffffccefc96c2a62a8ce.tar.xz pywal-69ad38997d3e490292c8ffffccefc96c2a62a8ce.zip | |
sequences: This is it, my magnum opus
| -rw-r--r-- | pywal/sequences.py | 2 |
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) |