diff options
author | Ole Kristian Lien <ole.k.lien@gmail.com> | 2009-12-09 23:16:56 +0000 |
---|---|---|
committer | Ole Kristian Lien <ole.k.lien@gmail.com> | 2009-12-09 23:16:56 +0000 |
commit | 2c2ff1462d288567db0cf90faa5591f0823042ff (patch) | |
tree | 5896cf03c40a73e0eb4fff0d027b222770018dc2 /tools/image_text | |
parent | ad4080141ca1d8d1f0539398765c0db381a47f09 (diff) |
fixed :)
Diffstat (limited to 'tools/image_text')
-rw-r--r-- | tools/image_text | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/tools/image_text b/tools/image_text index 97ee450..b14eaab 100644 --- a/tools/image_text +++ b/tools/image_text @@ -6,7 +6,6 @@ # # Make a text-image (intro-outro) # -# todo: sjekk hvor lang teksten er.. skaper problemer hvis blir for # lang. Bli kvitt counter. EXT=`echo "$1"|awk -F . '{print $NF}'` @@ -26,15 +25,15 @@ SIZE2="0" if [ $COUNT1 -ge "30" ] ; then SIZE1="30" SIZE2=`echo $SIZE1-10|bc` - echo "Size1: $SIZE1 - Size2: $SIZE2" +# echo "Size1: $SIZE1 - Size2: $SIZE2" elif [ $COUNT1 -ge "25" ] ; then SIZE1="40" SIZE2=`echo $SIZE1-10|bc` - echo "Size1: $SIZE1 - Size2: $SIZE2" +# echo "Size1: $SIZE1 - Size2: $SIZE2" elif [ $COUNT1 -ge "20" ] ; then SIZE1="50" SIZE2=`echo $SIZE1-20|bc` - echo "Size1: $SIZE1 - Size2: $SIZE2" +# echo "Size1: $SIZE1 - Size2: $SIZE2" else SIZE1="60" if [ $COUNT2 -ge "25" ] ; then @@ -43,7 +42,7 @@ else SIZE2=`echo $SIZE1-20|bc` fi - echo "Size1: $SIZE1 - Size2: $SIZE2" +# echo "Size1: $SIZE1 - Size2: $SIZE2" fi if [ -z "$4" ]; then |