diff options
| author | Dylan Araps <dylan.araps@gmail.com> | 2018-06-21 07:47:48 +1000 |
|---|---|---|
| committer | Dylan Araps <dylan.araps@gmail.com> | 2018-06-21 07:47:48 +1000 |
| commit | 55116a483429fa211566768718e4b50cb5243a46 (patch) | |
| tree | 4ec8ae286933bc02d466e50c3201242eff842331 | |
| parent | 9af91045c2caafd7182ca7105f9f3adee4558118 (diff) | |
sequences: Fixed extra white space in iterm2
| -rw-r--r-- | pywal/sequences.py | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/pywal/sequences.py b/pywal/sequences.py index b713a6e..8566975 100644 --- a/pywal/sequences.py +++ b/pywal/sequences.py @@ -30,11 +30,9 @@ def set_color(index, color): def set_iterm_tab_color(color): """Set iTerm2 tab/window color""" - return """ - \033]6;1;bg;red;brightness;%s\a - \033]6;1;bg;green;brightness;%s\a - \033]6;1;bg;blue;brightness;%s\a - """ % (*util.hex_to_rgb(color),) + return ("\033]6;1;bg;red;brightness;%s\a" + "\033]6;1;bg;green;brightness;%s\a" + "\033]6;1;bg;blue;brightness;%s\a") % (*util.hex_to_rgb(color),) def create_sequences(colors): |
