You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Hydro/packages/ui-default/components/profile/backgrounds/gen_thumbnails.sh

8 lines
165 B
Bash

#!/bin/bash
for f in *.jpg
do
echo "$f..."
convert "$f" -strip -interlace Plane -quality 92 -resize 200x124^ -gravity center -extent 200x124 "thumbnail/$f"
done