summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pywal/image.py4
1 files changed, 3 insertions, 1 deletions
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):