>>108752859
I think I have developed the most autistic wallpaper script possible.
while true; do
image="$(
find /usr/share/wallpapers -type f \
\( -iname '*.jpg' -o -iname '*.jpeg' -o -iname '*.png' -o -iname '*.bmp' \) \
-print0 \
| shuf -z -n 1 \
| tr -d '\0'
)"
gm convert "$image" \
-resize 1920x1080^ \
-gravity center \
-extent 1920x1080 \
-filter Hermite \
miff:- \
| gm display -window root -backdrop miff:-
sleep 3600
done &