Boot animation color improvements

This commit is contained in:
Tad 2018-06-24 10:18:19 -04:00
parent bfa7e90d5e
commit 0eeea28907
4 changed files with 4 additions and 3 deletions

View file

@ -98,7 +98,7 @@ export -f generateBootAnimationMask;
generateBootAnimationShine() {
color=$1;
output=$2;
convert -size 1024x128 -define gradient:angle=90 gradient:"$color"-#9E9E9E \( +clone -flop \) +append "$output";
convert -size 1024x128 -define gradient:angle=90 gradient:"$color" \( +clone -flop \) +append "$output";
}
export -f generateBootAnimationShine;