Merge pull request #438 from konimex/asciifallback
Added fallback ASCII for *BSD, Solaris, and GNU (Hurd)
This commit is contained in:
commit
fccc7609a9
4 changed files with 63 additions and 4 deletions
22
neofetch
22
neofetch
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue