blob: e55a0b13e70351a4075207fc2d0999fe6ab8f3fb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
"""
Get the image file.
"""
import os
import pathlib
import random
import sys
from .settings import CACHE_DIR
from . import util
from . import wallpaper
def get_random_image(img_dir):
"""Pick a random image file from a directory."""
current_wall = wallpaper.get()
current_wall = os.path.basename(current_wall)
file_types = (".png", ".jpg", ".jpeg", ".jpe", ".gif")
images = [img for img in os.scandir(str(img_dir))
if img.name.endswith(file_types) and img.name != current_wall]
if not images:
print("image: No new images found (nothing to do), exiting...")
sys.exit(1)
return str(img_dir / random.choice(images).name)
def get(img, cache_dir=CACHE_DIR):
"""Validate image input."""
image = pathlib.Path(img)
if image.is_file():
wal_img = str(image)
elif image.is_dir():
wal_img = get_random_image(image)
else:
print("error: No valid image file found.")
sys.exit(1)
# Cache the image file path.
util.save_file(wal_img, cache_dir / "wal")
print("image: Using image", wal_img)
return wal_img
|