holy fucking shit fr another neowofetch ubdate????!?!?!?!/! i fucking love neowofetch its the best fucking anime bro frfr bruh fr

This commit is contained in:
echo 2022-09-21 15:47:42 +04:30
parent 2237931b5d
commit 084603b8a8
5 changed files with 42 additions and 19 deletions

0
asciiart/README Normal file
View file

32
asciiart/asciiart.go Normal file
View file

@ -0,0 +1,32 @@
package asciiart
import (
"strings"
)
func Getascii(name string) []string {
none := `!!!!!!!!!!!!!!!
!!!!!!!!!!!!!!!
!!!!noascii!!!!
!!!!!!!!!!!!!!!
!!!!!!!!!!!!!!!
`
arch := ` /\
/ \
/\ \
/ > ω <\
/ __ \
/ __| |__-\
/_-'' ''-_\
`
switch name {
case "Arch Linux":
return strings.Split(arch, "\n")
default:
return strings.Split(none, "\n")
}
}