summaryrefslogtreecommitdiffstats
path: root/import-images.sh
diff options
context:
space:
mode:
authorAnne Nicolas <ennael@mageia.org>2013-08-04 16:06:48 +0000
committerAnne Nicolas <ennael@mageia.org>2013-08-04 16:06:48 +0000
commitb8fca061848039c6bdb629308340e1de3205176b (patch)
tree53aee191f39de05bb00579c40bfa5127a3676dc7 /import-images.sh
parent8b76dcbf71fa379d25d3db83a386391f0b9bb3dc (diff)
parentbc2ef72a8c1fc97811d450d0016c44392a43dc4b (diff)
downloadtheme-b8fca061848039c6bdb629308340e1de3205176b.tar
theme-b8fca061848039c6bdb629308340e1de3205176b.tar.gz
theme-b8fca061848039c6bdb629308340e1de3205176b.tar.bz2
theme-b8fca061848039c6bdb629308340e1de3205176b.tar.xz
theme-b8fca061848039c6bdb629308340e1de3205176b.zip
mageia 3 themedistro/mga3
Diffstat (limited to 'import-images.sh')
-rwxr-xr-ximport-images.sh19
1 files changed, 19 insertions, 0 deletions
diff --git a/import-images.sh b/import-images.sh
new file mode 100755
index 0000000..e5be16d
--- /dev/null
+++ b/import-images.sh
@@ -0,0 +1,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