summaryrefslogtreecommitdiff
path: root/pywal/image.py
diff options
context:
space:
mode:
authorDylan Araps <dylan.araps@gmail.com>2017-12-28 21:22:25 +1100
committerDylan Araps <dylan.araps@gmail.com>2017-12-28 21:22:25 +1100
commit8d391d0820e8e78cba504cfc447fbc2b1c48ecf4 (patch)
tree6f737d5b1fc2acba802269e77683bf75ef1376dd /pywal/image.py
parent271cbf4e2b779499ff57e4916dc96cb4fdbb00b8 (diff)
image: use a different shuffle algo
Diffstat (limited to 'pywal/image.py')
-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):