summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPetter Reinholdtsen <pere@hungry.com>2009-10-26 09:39:26 +0000
committerPetter Reinholdtsen <pere@hungry.com>2009-10-26 09:39:26 +0000
commitcb44fcbd951e52767d757da02c5b1a8215ce1ec6 (patch)
tree70910a2bc6d611b1e7df4482bc0d736e867b4b40
parentaec8c61cfa9bc61fb3b99f7bd03e119d58de71d3 (diff)
Add execute bit and make code more readable.
-rwxr-xr-x[-rw-r--r--]makefront/makefront.sh8
1 files changed, 7 insertions, 1 deletions
diff --git a/makefront/makefront.sh b/makefront/makefront.sh
index da8343f..fcfde49 100644..100755
--- a/makefront/makefront.sh
+++ b/makefront/makefront.sh
@@ -52,9 +52,15 @@ fi
#Sette tekst på bildet
echo "Setter teksten på bildet..."
-convert NUUG-vid_front${count}.png -pointsize 72 -fill white -draw "text 400,167 '${presenter}'" -draw "text 400,267 '${title}'" -pointsize 40 -draw "text 400,567 '${timeplace}'" NUUG-vid_front${count}.png
+convert NUUG-vid_front${count}.png -pointsize 72 -fill white \
+ -draw "text 400,167 '${presenter}'" -draw "text 400,267 '${title}'" \
+ -pointsize 40 -draw "text 400,567 '${timeplace}'" NUUG-vid_front${count}.png
echo "Laget trinn 3 av 3 (NUUG-vid_front${count}.png opprettet)."
+# Convert to PAL size
+#convert -size 720x576 \
+# NUUG-vid_front${count}.png NUUG-vid_front${count}-pal.png
+
echo "Makefront avslutter"
exit 0