blob: 2d8f06c29629b12048f85f18674faf08a3ddec5b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/bin/sh
mode=$1
shift
theme=$1
shift
if [ -z "$mode" -o -z "$theme" ]; then
echo "usage: $0 [bootsplash|background] <theme name> [files ...]"
fi
prefix=background/$theme
[ "$mode" = "bootsplash" ] && prefix=bootsplash/data/bootsplash
for f in "$@"; do
r=`identify -format '%wx%h' $f`
d=$theme/$prefix-$r.png
cp -af $f $d
done
|