colors: Fix bug with i3 titlebars not being the right color.

This commit is contained in:
Dylan Araps 2017-06-30 20:07:28 +10:00
parent 9ddf1c9758
commit 6d48f5fb6b

View File

@ -8,20 +8,20 @@ from pywal.settings import CACHE_DIR
from pywal import util
def reload_i3():
"""Reload i3 colors."""
if shutil.which("i3-msg"):
util.disown("i3-msg", "reload")
def reload_xrdb():
"""Merge the colors into the X db so new terminals use them."""
if shutil.which("xrdb"):
subprocess.call(["xrdb", "-merge", CACHE_DIR / "colors.Xresources"])
def reload_i3():
"""Reload i3 colors."""
if shutil.which("i3-msg"):
util.disown("i3-msg", "reload")
def reload_env():
"""Reload environment programs."""
reload_i3()
reload_xrdb()
reload_i3()
print("reload: Reloaded environment.")