refactor: replace ${default} with ${white}

Signed-off-by: Dominik Willner th33xitus@gmail.com
This commit is contained in:
th33xitus
2022-04-02 23:34:31 +02:00
parent 9122b50367
commit ea6a380e0f
19 changed files with 80 additions and 81 deletions

View File

@@ -168,11 +168,11 @@ function fluidd_status(){
fi
done
if [ "$fcount" == "${#fluidd_data[*]}" ]; then
FLUIDD_STATUS="${green}Installed!${default} "
FLUIDD_STATUS="${green}Installed!${white} "
elif [ "$fcount" == 0 ]; then
FLUIDD_STATUS="${red}Not installed!${default} "
FLUIDD_STATUS="${red}Not installed!${white} "
else
FLUIDD_STATUS="${yellow}Incomplete!${default} "
FLUIDD_STATUS="${yellow}Incomplete!${white} "
fi
}