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:
parent
7c290dd820
commit
f206dfc0bf
5 changed files with 42 additions and 19 deletions
0
asciiart/README
Normal file
0
asciiart/README
Normal file
32
asciiart/asciiart.go
Normal file
32
asciiart/asciiart.go
Normal 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")
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue