2018-08-05 22:37:14 +02:00
|
|
|
|
#!/usr/bin/env python3
|
2012-07-06 14:19:54 +02:00
|
|
|
|
|
|
|
|
|
# Build a multi screen wallpaper
|
|
|
|
|
|
|
|
|
|
# First argument is the directory where the wallpapers can be
|
|
|
|
|
# found. We use xinerama to know the dimension of each screen.
|
|
|
|
|
|
|
|
|
|
import os
|
|
|
|
|
import random
|
2021-07-30 14:11:48 +02:00
|
|
|
|
import argparse
|
2015-02-05 09:26:17 +01:00
|
|
|
|
import tempfile
|
2021-08-26 11:32:49 +02:00
|
|
|
|
import collections
|
|
|
|
|
import itertools
|
2012-07-06 14:19:54 +02:00
|
|
|
|
|
2020-02-06 21:59:29 +01:00
|
|
|
|
from Xlib import display
|
2018-08-05 22:37:14 +02:00
|
|
|
|
from Xlib.ext import randr
|
2012-07-06 14:19:54 +02:00
|
|
|
|
|
2018-08-05 22:37:14 +02:00
|
|
|
|
from PIL import Image
|
2012-07-06 14:19:54 +02:00
|
|
|
|
|
2021-07-30 14:11:48 +02:00
|
|
|
|
parser = argparse.ArgumentParser()
|
|
|
|
|
parser.add_argument(
|
2021-07-17 09:13:26 +02:00
|
|
|
|
"-d",
|
|
|
|
|
"--directory",
|
|
|
|
|
default=".",
|
|
|
|
|
help="search for images in DIRECTORY",
|
|
|
|
|
)
|
2021-07-30 14:11:48 +02:00
|
|
|
|
parser.add_argument(
|
2021-07-17 09:13:26 +02:00
|
|
|
|
"-t",
|
|
|
|
|
"--target",
|
|
|
|
|
default="background.png",
|
|
|
|
|
help="write background to FILE",
|
|
|
|
|
)
|
2021-07-30 14:11:48 +02:00
|
|
|
|
parser.add_argument(
|
2021-08-26 11:32:49 +02:00
|
|
|
|
"--extra-images",
|
|
|
|
|
default=3,
|
|
|
|
|
metavar="N",
|
|
|
|
|
help="consider N additional images to choose the best combination",
|
2021-07-17 09:13:26 +02:00
|
|
|
|
)
|
2021-07-30 14:11:48 +02:00
|
|
|
|
parser.add_argument(
|
2021-07-17 09:13:26 +02:00
|
|
|
|
"--compression", default=0, type=int, help="compression level when saving"
|
|
|
|
|
)
|
2021-07-30 14:11:48 +02:00
|
|
|
|
options = parser.parse_args()
|
2012-07-06 14:19:54 +02:00
|
|
|
|
background = None
|
|
|
|
|
|
|
|
|
|
# Get display size
|
2018-08-05 22:37:14 +02:00
|
|
|
|
d = display.Display()
|
|
|
|
|
screen = d.screen()
|
|
|
|
|
window = screen.root.create_window(0, 0, 1, 1, 1, screen.root_depth)
|
2021-07-17 09:13:26 +02:00
|
|
|
|
background = Image.new("RGB", (screen.width_in_pixels, screen.height_in_pixels))
|
2018-08-05 22:37:14 +02:00
|
|
|
|
|
|
|
|
|
# Query randr extension
|
2021-08-26 11:32:49 +02:00
|
|
|
|
Output = collections.namedtuple("Output", ["x", "y", "width", "height"])
|
|
|
|
|
outputs = []
|
2021-07-15 15:26:03 +02:00
|
|
|
|
screen_resources = randr.get_screen_resources_current(window)
|
2018-08-05 22:37:14 +02:00
|
|
|
|
for output in screen_resources.outputs:
|
2021-07-17 09:13:26 +02:00
|
|
|
|
output_info = randr.get_output_info(window, output, screen_resources.timestamp)
|
2018-08-05 22:37:14 +02:00
|
|
|
|
if output_info.crtc == 0:
|
|
|
|
|
continue
|
2021-07-17 09:13:26 +02:00
|
|
|
|
crtc_info = randr.get_crtc_info(window, output_info.crtc, output_info.timestamp)
|
2021-08-26 11:32:49 +02:00
|
|
|
|
outputs.append(Output(crtc_info.x, crtc_info.y, crtc_info.width, crtc_info.height))
|
|
|
|
|
if not outputs:
|
|
|
|
|
outputs.append(Output(0, 0, (background.width, background.height)))
|
2012-07-06 14:19:54 +02:00
|
|
|
|
|
2021-08-26 11:32:49 +02:00
|
|
|
|
# Get all possible rectangles from outputs
|
|
|
|
|
candidates = []
|
|
|
|
|
for output in outputs:
|
|
|
|
|
candidates.append(output)
|
|
|
|
|
for ooutput in outputs:
|
|
|
|
|
if ooutput == output:
|
|
|
|
|
continue
|
|
|
|
|
if output.x > ooutput.x or output.y > ooutput.y:
|
|
|
|
|
continue
|
|
|
|
|
candidates.append(
|
|
|
|
|
Output(
|
|
|
|
|
output.x,
|
|
|
|
|
output.y,
|
|
|
|
|
ooutput.x - output.x + ooutput.width,
|
|
|
|
|
ooutput.y - output.y + ooutput.height,
|
|
|
|
|
)
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
# Get all rectangle combinations to cover outputs without overlapping
|
|
|
|
|
groups = []
|
|
|
|
|
for r in range(len(candidates)):
|
|
|
|
|
for candidate in itertools.combinations(candidates, r + 1):
|
|
|
|
|
for output in outputs:
|
|
|
|
|
nb = 0
|
|
|
|
|
for c in candidate:
|
|
|
|
|
if c.x <= output.x < c.x + c.width and c.y <= output.y < c.y + c.height:
|
|
|
|
|
nb += 1
|
|
|
|
|
if nb != 1: # output not contained in a single rectangle
|
|
|
|
|
break
|
|
|
|
|
else:
|
|
|
|
|
groups.append(candidate)
|
|
|
|
|
|
|
|
|
|
# Get random images
|
2012-07-06 14:19:54 +02:00
|
|
|
|
images = []
|
2018-08-01 14:24:53 +02:00
|
|
|
|
for base, _, files in os.walk(os.path.join(options.directory)):
|
2012-07-06 14:19:54 +02:00
|
|
|
|
for i in files:
|
2021-08-08 15:25:59 +02:00
|
|
|
|
if os.path.splitext(i)[1].lower() in (".jpg", ".jpeg", ".png", ".webp"):
|
2018-08-01 14:24:53 +02:00
|
|
|
|
images.append(os.path.join(base, i))
|
2021-08-26 11:32:49 +02:00
|
|
|
|
images = random.sample(images, len(outputs) * options.extra_images)
|
2015-02-05 09:27:27 +01:00
|
|
|
|
images = [Image.open(image) for image in images]
|
2021-08-26 11:32:49 +02:00
|
|
|
|
|
|
|
|
|
# Find optimal combination for images
|
|
|
|
|
best_association = None
|
|
|
|
|
best_score = 0
|
|
|
|
|
for group in groups:
|
|
|
|
|
for association in (zip(group, p) for p in itertools.permutations(images)):
|
|
|
|
|
score = 0
|
|
|
|
|
association = list(association)
|
|
|
|
|
for output, image in association:
|
|
|
|
|
# Similar ratio
|
|
|
|
|
oratio = output.width * 100 // output.height
|
|
|
|
|
iratio = image.width * 100 // image.height
|
|
|
|
|
r = iratio / oratio
|
|
|
|
|
if r > 1:
|
|
|
|
|
r = 1 / r
|
|
|
|
|
score += r * 100
|
|
|
|
|
# Similar scale (when cropped)
|
|
|
|
|
opixels = output.width * output.height
|
|
|
|
|
ipixels = image.width * image.height * r
|
|
|
|
|
r = ipixels / opixels
|
|
|
|
|
if r >= 1:
|
|
|
|
|
r = 1
|
|
|
|
|
score += r * 50
|
|
|
|
|
score /= len(group)
|
|
|
|
|
if score > best_score or best_association is None:
|
|
|
|
|
best_association = association
|
|
|
|
|
best_score = score
|
2018-08-01 14:24:53 +02:00
|
|
|
|
|
2021-07-17 09:13:26 +02:00
|
|
|
|
print(
|
|
|
|
|
"wallpaper: {}".format(
|
|
|
|
|
" + ".join(
|
2021-08-17 12:51:07 +02:00
|
|
|
|
"`{}` ({}×{})".format(
|
|
|
|
|
image.filename[(len(options.directory) + 1) :], *image.size
|
|
|
|
|
)
|
2021-08-26 11:32:49 +02:00
|
|
|
|
for image in [couple[1] for couple in best_association]
|
2021-07-17 09:13:26 +02:00
|
|
|
|
)
|
|
|
|
|
)
|
|
|
|
|
)
|
2016-04-17 19:17:53 +02:00
|
|
|
|
|
2021-08-26 11:32:49 +02:00
|
|
|
|
for couple in best_association:
|
|
|
|
|
output = couple[0]
|
|
|
|
|
image = couple[1]
|
|
|
|
|
|
|
|
|
|
# Find the right size for the screen
|
|
|
|
|
imx, imy = output.width, image.height * output.width // image.width
|
|
|
|
|
if imy < output.height:
|
|
|
|
|
imx, imy = image.width * output.height // image.height, output.height
|
|
|
|
|
if image.size != (imx, imy):
|
|
|
|
|
image = image.resize((imx, imy), Image.LANCZOS)
|
|
|
|
|
image = image.crop(
|
|
|
|
|
(
|
|
|
|
|
(imx - output.width) / 2,
|
|
|
|
|
(imy - output.height) / 2,
|
|
|
|
|
imx - (imx - output.width) / 2,
|
|
|
|
|
imy - (imy - output.height) / 2,
|
2021-07-17 09:13:26 +02:00
|
|
|
|
)
|
2021-08-26 11:32:49 +02:00
|
|
|
|
)
|
|
|
|
|
background.paste(image, (output.x, output.y))
|
2012-07-06 14:19:54 +02:00
|
|
|
|
|
|
|
|
|
# Save
|
|
|
|
|
assert background, "Don't know the size of the display area"
|
2016-04-17 19:17:53 +02:00
|
|
|
|
with tempfile.NamedTemporaryFile(
|
2021-07-17 09:13:26 +02:00
|
|
|
|
delete=False, dir=os.path.dirname(os.path.realpath(options.target))
|
|
|
|
|
) as tmp:
|
2020-02-06 22:02:35 +01:00
|
|
|
|
background.save(tmp, "png", compress_level=options.compression)
|
2015-02-05 09:26:17 +01:00
|
|
|
|
os.rename(tmp.name, options.target)
|