summaryrefslogtreecommitdiff
path: root/pywal/reload.py
diff options
context:
space:
mode:
Diffstat (limited to 'pywal/reload.py')
-rw-r--r--pywal/reload.py14
1 files changed, 0 insertions, 14 deletions
diff --git a/pywal/reload.py b/pywal/reload.py
index 7937e8f..4d3f69e 100644
--- a/pywal/reload.py
+++ b/pywal/reload.py
@@ -65,17 +65,3 @@ def env(xrdb_file=None):
sway()
polybar()
print("reload: Reloaded environment.")
-
-
-def colors(vte, cache_dir=CACHE_DIR):
- """Reload the current scheme."""
- sequence_file = os.path.join(cache_dir, "sequences")
-
- if os.path.isfile(sequence_file):
- sequences = "".join(util.read_file(sequence_file))
-
- # If vte mode was used, remove the unsupported sequence.
- if vte:
- sequences = re.sub(r"\]708;(\[.{0,3}\])?\#.{6}", "", sequences)
-
- print(sequences, end="")