From 7d1fc8d4d3ea3a182b567a4d54c87574f0506fcd Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Sat, 22 Jul 2017 10:58:14 +1000 Subject: [PATCH] general: Disable notifications by default. --- pywal/wal.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pywal/wal.py b/pywal/wal.py index fa0eb3e..695645a 100644 --- a/pywal/wal.py +++ b/pywal/wal.py @@ -25,7 +25,7 @@ def get_image(img, cache_dir=CACHE_DIR): def create_palette(img, cache_dir=CACHE_DIR, - color_count=COLOR_COUNT, quiet=False): + color_count=COLOR_COUNT, quiet=True): """Create a palette and return it as a dict.""" return magic.get_colors(img, cache_dir, color_count, quiet)