blob: e5be16dc99f7073d6fada25c9fc3cadb1a0e66a9 (
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
|