diff options
Diffstat (limited to 'pywal/sequences.py')
| -rw-r--r-- | pywal/sequences.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/pywal/sequences.py b/pywal/sequences.py index d7f1fa9..c1a7bdd 100644 --- a/pywal/sequences.py +++ b/pywal/sequences.py @@ -44,9 +44,10 @@ def send_sequences(colors, vte, cache_dir): if len(term) < 4] terminals.append(cache_dir / "sequences") - # Send the sequences to all open terminals. - # pylint: disable=W0106 - [util.save_file("".join(sequences), term) for term in terminals] + # Writing to "/dev/pts/[0-9] lets you send data to open terminals. + for term in terminals: + util.save_file("".join(sequences), term) + print("colors: Set terminal colors") |
