Added fallback ASCII for *BSD, Solaris, GNU

This commit is contained in:
Muhammad Herdiansyah 2016-11-13 18:08:07 +07:00
parent b9606cf611
commit 5801cd44a1
4 changed files with 63 additions and 4 deletions

View file

@ -2537,10 +2537,24 @@ get_distro_colors() {
;;
*)
if [[ "$os" == "Linux" ]]; then
ascii_distro="linux"
set_colors fg 8 3
fi
case "$os" in
"Linux")
ascii_distro="linux"
set_colors fg 8 3
;;
"BSD")
ascii_distro="bsd"
set_colors 1 7 4 3 6
;;
"GNU")
ascii_distro="gnu"
set_colors fg
;;
"Solaris")
ascii_distro="solaris"
set_colors 3
;;
esac
;;
esac