Boot animation shine!

This commit is contained in:
Tad 2018-06-24 08:42:02 -04:00
parent b0b71adf66
commit bfa7e90d5e
3 changed files with 9 additions and 2 deletions

View file

@ -95,6 +95,13 @@ generateBootAnimationMask() {
}
export -f generateBootAnimationMask;
generateBootAnimationShine() {
color=$1;
output=$2;
convert -size 1024x128 -define gradient:angle=90 gradient:"$color"-#9E9E9E \( +clone -flop \) +append "$output";
}
export -f generateBootAnimationShine;
audit2allowCurrent() {
adb shell dmesg | audit2allow -p "$ANDROID_PRODUCT_OUT"/root/sepolicy;
}