chore: add thinkpad wallpapers

This commit is contained in:
Jan Meyer
2026-03-05 19:06:59 +01:00
parent 713f3739ac
commit 7f6969d5b4
44 changed files with 403 additions and 1 deletions

22
.download.sh Executable file
View File

@@ -0,0 +1,22 @@
#!/bin/bash
url=""
file_name=""
read -p "Image URL: " url
read -p "Output File: " file_name
if [ -z url ]; then
echo "Please input a image source URL"
echo "Abortung..."
fi
if [ -z file_name ]; then
echo "Please input a image target file name"
echo "Abortung..."
fi
cd /home/jan/wallpapers/originals/
curl -o "$file_name.jpg" $url
magick "$file_name.jpg" -resize 1920x1200 "/home/jan/wallpapers/$file_name.jpg"