From 8d391d0820e8e78cba504cfc447fbc2b1c48ecf4 Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Thu, 28 Dec 2017 21:22:25 +1100 Subject: [PATCH] image: use a different shuffle algo --- pywal/image.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pywal/image.py b/pywal/image.py index 8b25b1e..e4bccfa 100644 --- a/pywal/image.py +++ b/pywal/image.py @@ -25,7 +25,9 @@ def get_random_image(img_dir): print("image: No new images found (nothing to do), exiting...") sys.exit(1) - return os.path.join(img_dir, random.choice(images).name) + random.shuffle(images) + + return os.path.join(img_dir, images[0].name) def get(img, cache_dir=CACHE_DIR):