diff options
| author | Dylan Araps <dylan.araps@gmail.com> | 2018-01-17 09:06:22 +1100 |
|---|---|---|
| committer | Dylan Araps <dylan.araps@gmail.com> | 2018-01-17 09:06:22 +1100 |
| commit | 0a71cb7b2b797a64d7798dd539a37d3a0fb7aed7 (patch) | |
| tree | 049fca1d4ab5b77692679ab0d07c5ca37233a448 /pywal/sequences.py | |
| parent | 39ca55d03b7be499f15ed5edb876272ecc2ec756 (diff) | |
alpha: Store alpha value in scheme file. Fixes #120
Diffstat (limited to 'pywal/sequences.py')
| -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 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) |
