From 0a71cb7b2b797a64d7798dd539a37d3a0fb7aed7 Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Wed, 17 Jan 2018 09:06:22 +1100 Subject: alpha: Store alpha value in scheme file. Fixes #120 --- pywal/sequences.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pywal/sequences.py') diff --git a/pywal/sequences.py b/pywal/sequences.py index dcc2378..c492d32 100644 --- a/pywal/sequences.py +++ b/pywal/sequences.py @@ -15,7 +15,7 @@ def set_special(index, color, iterm_name="h"): if OS == "Darwin": return "\033]P%s%s\033\\" % (iterm_name, color.strip("#")) - if index in [11, 708] and alpha != 100: + if index in [11, 708] and alpha != "100": return "\033]%s;[%s]%s\033\\" % (index, alpha, color) return "\033]%s;%s\033\\" % (index, color) -- cgit v1.2.3