From 4bcde0f23f4e60069b20fb1b004c3828c431c52f Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Tue, 3 Apr 2018 12:25:44 +1000 Subject: themes: Enhance listing. --- pywal/image.py | 2 +- pywal/theme.py | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) (limited to 'pywal') diff --git a/pywal/image.py b/pywal/image.py index f30a82d..1b982ce 100644 --- a/pywal/image.py +++ b/pywal/image.py @@ -50,5 +50,5 @@ def get(img, cache_dir=CACHE_DIR): # Cache the image file path. util.save_file(wal_img, os.path.join(cache_dir, "wal")) - logging.info("Using image %s.", wal_img) + logging.info("Using image \033[1;37m%s\033[0m.", wal_img) return wal_img diff --git a/pywal/theme.py b/pywal/theme.py index b0dbbf6..cd09667 100644 --- a/pywal/theme.py +++ b/pywal/theme.py @@ -72,6 +72,8 @@ def file(input_file): # Parse the theme file. if os.path.isfile(theme_file): + logging.info("Set theme to \033[1;37m%s\033[0m.", + os.path.basename(theme_file)) return parse(theme_file) else: -- cgit v1.2.3