diff options
| author | Dylan Araps <[email protected]> | 2018-06-21 07:47:48 +1000 |
|---|---|---|
| committer | Dylan Araps <[email protected]> | 2018-06-21 07:47:48 +1000 |
| commit | 55116a483429fa211566768718e4b50cb5243a46 (patch) | |
| tree | 4ec8ae286933bc02d466e50c3201242eff842331 | |
| parent | Merge branch 'master' of github.com:dylanaraps/pywal (diff) | |
| download | pywal-55116a483429fa211566768718e4b50cb5243a46.tar.xz pywal-55116a483429fa211566768718e4b50cb5243a46.zip | |
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): |