Created
May 11, 2026 12:14
-
-
Save draganmarjanovic/acac584ec6e45c7ab16da149e50efca8 to your computer and use it in GitHub Desktop.
Xteink X3 Wallpaper Creator
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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