Added fallback ASCII for *BSD, Solaris, GNU
This commit is contained in:
parent
b9606cf611
commit
5801cd44a1
4 changed files with 63 additions and 4 deletions
19
ascii/distro/bsd
Normal file
19
ascii/distro/bsd
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
${c1} , ,
|
||||||
|
/( )`
|
||||||
|
\ \___ / |
|
||||||
|
/- _ `-/ '
|
||||||
|
(${c2}/\/ \ ${c1}\ /\
|
||||||
|
${c2}/ / | ` ${c1}\
|
||||||
|
${c3}O O ${c2}) ${c1}/ |
|
||||||
|
${c2}`-^--'${c1}`< '
|
||||||
|
(_.) _ ) /
|
||||||
|
`.___/` /
|
||||||
|
`-----' /
|
||||||
|
${c4}<----. __ / __ \
|
||||||
|
${c4}<----|====${c1}O)))${c4}==${c1}) \) /${c4}====|
|
||||||
|
<----' ${c1}`--' `.__,' \
|
||||||
|
| |
|
||||||
|
\ / /\
|
||||||
|
${c5}______${c1}( (_ / \______/
|
||||||
|
${c5},' ,-----' |
|
||||||
|
`--{__________)
|
18
ascii/distro/gnu
Normal file
18
ascii/distro/gnu
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
${c1} _-`````-, ,- '- .
|
||||||
|
.' .- - | | - -. `.
|
||||||
|
/.' / `. \
|
||||||
|
:/ : _... ..._ `` :
|
||||||
|
:: : /._ .`:'_.._\. || :
|
||||||
|
:: `._ ./ ,` : \ . _.'' .
|
||||||
|
`:. / | -. \-. \\_ /
|
||||||
|
\:._ _/ .' .@) \@) ` `\ ,.'
|
||||||
|
_/,--' .- .\,-.`--`.
|
||||||
|
,'/'' (( \ ` )
|
||||||
|
/'/' \ `-' (
|
||||||
|
'/'' `._,-----'
|
||||||
|
''/' .,---'
|
||||||
|
''/' ;:
|
||||||
|
''/'' ''/
|
||||||
|
''/''/''
|
||||||
|
'/'/'
|
||||||
|
`;
|
8
ascii/distro/solaris
Normal file
8
ascii/distro/solaris
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
${c1} `- `
|
||||||
|
`-- `+- .:
|
||||||
|
.+: `++: -/+- .
|
||||||
|
`.::` -++/``:::`./+/ `.-/.
|
||||||
|
`++/-`.` ` /++:`
|
||||||
|
`` ./:` .: `..`.-
|
||||||
|
``./+/:- -+++:-
|
||||||
|
-/+` :.
|
22
neofetch
22
neofetch
|
@ -2537,10 +2537,24 @@ get_distro_colors() {
|
||||||
;;
|
;;
|
||||||
|
|
||||||
*)
|
*)
|
||||||
if [[ "$os" == "Linux" ]]; then
|
case "$os" in
|
||||||
ascii_distro="linux"
|
"Linux")
|
||||||
set_colors fg 8 3
|
ascii_distro="linux"
|
||||||
fi
|
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
|
esac
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue