From 29d7c93779d6bc60422934277fdb0811ee9489ea Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Wed, 2 Aug 2017 13:18:05 +1000 Subject: [PATCH] version: bump --- pywal/sequences.py | 2 +- pywal/settings.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pywal/sequences.py b/pywal/sequences.py index c254de0..b94bd93 100644 --- a/pywal/sequences.py +++ b/pywal/sequences.py @@ -29,7 +29,7 @@ def set_color(index, color): def set_iterm_tab_color(color): - """Set iTerm2 window color""" + """Set iTerm2 tab/window color""" red, green, blue = util.hex_to_rgb(color) return [ f"\033]6;1;bg;red;brightness;{red}\a", diff --git a/pywal/settings.py b/pywal/settings.py index 61af72b..53d3d4a 100644 --- a/pywal/settings.py +++ b/pywal/settings.py @@ -13,7 +13,7 @@ import pathlib import platform -__version__ = "0.5.9" +__version__ = "0.5.10" HOME = pathlib.Path.home()