summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pywal/sequences.py3
-rw-r--r--pywal/templates/load.sh4
-rw-r--r--pywal/util.py1
3 files changed, 0 insertions, 8 deletions
diff --git a/pywal/sequences.py b/pywal/sequences.py
index 61c981b..a5a0f44 100644
--- a/pywal/sequences.py
+++ b/pywal/sequences.py
@@ -57,9 +57,6 @@ def create_sequences(colors):
if OS == "Darwin":
sequences += set_iterm_tab_color(colors["special"]["background"])
- # Send sequences to object.
- util.Color.sequences = "".join(sequences)
-
# 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.
diff --git a/pywal/templates/load.sh b/pywal/templates/load.sh
deleted file mode 100644
index 6e4848f..0000000
--- a/pywal/templates/load.sh
+++ /dev/null
@@ -1,4 +0,0 @@
-echo -en "{color0.sequences}"
-
-[[ -z "$VTE_VERSION" ]] && \
- echo -en "\\033]708;{color0}\\007"
diff --git a/pywal/util.py b/pywal/util.py
index cef5a63..37df3a8 100644
--- a/pywal/util.py
+++ b/pywal/util.py
@@ -10,7 +10,6 @@ import subprocess
class Color:
"""Color formats."""
alpha_num = 100
- sequences = ""
def __init__(self, hex_color):
self.hex_color = hex_color