Return to basic wait screen

This commit is contained in:
Bob Mottram 2017-06-11 22:23:44 +01:00
parent 376903c260
commit 9bcf1e6a29
1 changed files with 0 additions and 16 deletions

View File

@ -47,33 +47,17 @@ function please_wait {
echo -n ''
}
function include_source {
source $1
}
please_wait
width=$(tput cols)
height=$(tput lines)
spin='-\|/'
i=0
UTILS_FILES=/usr/share/${PROJECT_NAME}/utils/${PROJECT_NAME}-utils-*
for f in $UTILS_FILES
do
tput cup $((height * 3 / 5)) $(((width / 2)))
echo -n ''
i=$(( (i+1) %4 ))
printf "\r${spin:$i:1}"
source $f
done
APP_FILES=/usr/share/${PROJECT_NAME}/apps/${PROJECT_NAME}-app-*
for f in $APP_FILES
do
tput cup $((height * 3 / 5)) $(((width / 2)))
echo -n ''
i=$(( (i+1) %4 ))
printf "\r${spin:$i:1}"
source $f
done