Skip to content

Instantly share code, notes, and snippets.

@draganmarjanovic
Created May 11, 2026 12:14
Show Gist options
  • Select an option

  • Save draganmarjanovic/acac584ec6e45c7ab16da149e50efca8 to your computer and use it in GitHub Desktop.

Select an option

Save draganmarjanovic/acac584ec6e45c7ab16da149e50efca8 to your computer and use it in GitHub Desktop.
Xteink X3 Wallpaper Creator
# Convert all the .jpegs in a folder to .bmp's for the X3 Xteink
for f in *.jpeg; do
magick "$f" -auto-orient -resize 528x792^ -gravity center -extent 528x792 -colors 128 -type Grayscale "BMP3:${f%.jpeg}.bmp"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment