mirror of
https://github.com/dylanaraps/pywal.git
synced 2025-01-23 22:38:36 +01:00
backend: Import colorz instead of running it as a subprocess.
This commit is contained in:
parent
1ef4c742a2
commit
22a2618c21
@ -6,14 +6,22 @@ import shutil
|
||||
import subprocess
|
||||
import sys
|
||||
|
||||
try:
|
||||
import colorz
|
||||
|
||||
except ImportError:
|
||||
logging.error("colorz wasn't found on your system.")
|
||||
logging.error("Try another backend. (wal --backend)")
|
||||
sys.exit(1)
|
||||
|
||||
from .. import colors
|
||||
from .. import util
|
||||
|
||||
|
||||
def gen_colors(img):
|
||||
"""Generate a colorscheme using Colorz."""
|
||||
cmd = ["colorz", "-n", "6", "--bold", "0", "--no-preview", "--no-bg-img"]
|
||||
return subprocess.check_output([*cmd, img]).splitlines()
|
||||
raw_colors = colorz.colorz(img, n=6, bold_add=0)
|
||||
return [util.rgb_to_hex([*color[0]]) for color in raw_colors]
|
||||
|
||||
|
||||
def adjust(cols, light):
|
||||
@ -28,10 +36,11 @@ def adjust(cols, light):
|
||||
|
||||
def get(img, light=False):
|
||||
"""Get colorscheme."""
|
||||
if not shutil.which("colorz"):
|
||||
logging.error("Colorz wasn't found on your system.")
|
||||
logging.error("Try another backend. (wal --backend)")
|
||||
cols = gen_colors(img)
|
||||
|
||||
if len(cols) < 6:
|
||||
logging.error("colorz failed to generate enough colors.")
|
||||
logging.error("Try another backend or another image. (wal --backend)")
|
||||
sys.exit(1)
|
||||
|
||||
cols = [col.decode('UTF-8').split()[0] for col in gen_colors(img)]
|
||||
return adjust(cols, light)
|
||||
|
Loading…
Reference in New Issue
Block a user