change delay to 40

This commit is contained in:
Travis CI 2019-11-26 15:55:08 +05:30
parent 0f4f2cb7ce
commit 2fce272ad5

View file

@ -4,9 +4,9 @@ animate_fix(){
cursor=$1 cursor=$1
file=$2 file=$2
path=./$cursor/bitmaps/$file.in path="./$cursor/bitmaps/$file.in"
#sort -k 4 ./move/left_ptr_watch.in sort -k 4 -o "$path" "$path"
mv -f $path $path.bak mv -f "$path" "$path.bak"
#j for total size 24,28,32,40,48,56,64,72,80,88,96 = 11 #j for total size 24,28,32,40,48,56,64,72,80,88,96 = 11
for j in {1..11} for j in {1..11}
@ -14,22 +14,30 @@ animate_fix(){
for i in {1..60} for i in {1..60}
do do
line=`sed -n '1~60'p $path.bak | sed -n "$j"p` line=`sed -n '1~60'p $path.bak | sed -n "$j"p`
# echo "$line"
number=`echo $i | awk '{ printf "%04i\n", $0 }'` number=`echo $i | awk '{ printf "%04i\n", $0 }'`
# echo "$number"
line=${line/${file}_0001.png/${file}_${number}.png} line=${line/${file}_0001.png/${file}_${number}.png}
# echo "$line"
echo "$line" >> $path echo "$line" >> $path
#echo "$line" #echo "$line"
done done
done done
fixed_line=`sed 's/[0-9] [0-9]*$/25/' $path` fixed_line=`sed 's/[0-9][0-9]*$/40/' $path`
echo "$fixed_line" > $path echo "$fixed_line" > $path
rm -rf $path.bak rm -rf $path.bak
} }
if [ "$1" != "" ]; then
animate_fix "$1" "left_ptr_watch" animate_fix "$1" "left_ptr_watch"
animate_fix "$1" "watch" animate_fix "$1" "watch"
else
exit 1
fi
#if script generate error or success #if script generate error or success
if [ $? -ne 0 ] if [ $? -ne 0 ]