2022-09-21 13:17:42 +02:00
|
|
|
package asciiart
|
|
|
|
|
|
|
|
import (
|
|
|
|
"strings"
|
|
|
|
)
|
|
|
|
|
|
|
|
func Getascii(name string) []string {
|
|
|
|
none := `!!!!!!!!!!!!!!!
|
|
|
|
!!!!!!!!!!!!!!!
|
|
|
|
!!!!noascii!!!!
|
|
|
|
!!!!!!!!!!!!!!!
|
2022-09-22 09:54:22 +02:00
|
|
|
!!!!!!!!!!!!!!! `
|
2022-09-21 13:17:42 +02:00
|
|
|
arch := ` /\
|
|
|
|
/ \
|
|
|
|
/\ \
|
|
|
|
/ > ω <\
|
|
|
|
/ __ \
|
|
|
|
/ __| |__-\
|
2022-09-22 09:54:22 +02:00
|
|
|
/_-'' ''-_\ `
|
2022-09-21 13:17:42 +02:00
|
|
|
|
|
|
|
switch name {
|
|
|
|
case "Arch Linux":
|
|
|
|
return strings.Split(arch, "\n")
|
|
|
|
|
|
|
|
default:
|
|
|
|
return strings.Split(none, "\n")
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|