MORE ASCIIS THANKS UWUFETCH

This commit is contained in:
echo 2022-09-26 10:43:21 +03:30 committed by nea
parent 9a98330276
commit cc6ad35e54
No known key found for this signature in database
GPG key ID: AA563E93EB628D91
21 changed files with 145 additions and 28 deletions

View file

@ -4,5 +4,3 @@
/OωO\ɛU\/ __
/ \ \__/ \
/ \ \

View file

@ -3,6 +3,3 @@
/ \
| {RED}~ {GREEN}> ω < {RED}~ {GREEN}|
------------

View file

@ -5,4 +5,3 @@
/ __ \
/ __| |__-\
/_-'' ''-_\

View file

@ -6,15 +6,148 @@ import (
)
//go:embed alpine.txt
var Alpine string
var alpine string
//go:embed unknown.txt
var unknown string
//go:embed amogos.txt
var amogos string
//go:embed android.txt
var android string
//go:embed arch.txt
var arch string
//go:embed arcolinux.txt
var arcolinux string
//go:embed artix.txt
var artix string
//go:embed debian.txt
var debian string
//go:embed endeavouros.txt
var endeavouros string
//go:embed fedora.txt
var fedora string
//go:embed freebsd.txt
var freebsd string
//go:embed gentoo.txt
var gentoo string
//go:embed gnu.txt
var gnu string
//go:embed guix.txt
var guix string
//go:embed ios.txt
var ios string
//go:embed macos.txt
var macos string
//go:embed manjaro-arm.txt
var manjaroarm string
//go:embed manjaro.txt
var manjaro string
//go:embed linuxmint.txt
var linuxmint string
//go:embed openbsd.txt
var openbsd string
//go:embed opensuse-leap.txt
var opensuseleap string
//go:embed opensuse-tumbleweed.txt
var opensuseweed string
//go:embed pop.txt
var pop string
//go:embed raspbian.txt
var raspbian string
//go:embed slackware.txt
var slackware string
//go:embed solus.txt
var solus string
//go:embed ubuntu.txt
var ubuntu string
//go:embed void.txt
var void string
//go:embed xerolinux.txt
var xerolinux string
func GetAsciiInternal(distroID string) string {
switch distroID {
case "Alpine":
return Alpine
case "alpine":
return alpine
case "arcolinux":
return arcolinux
case "artix":
return artix
case "debian":
return debian
case "endeavouros":
return endeavouros
case "fedora":
return fedora
case "freebsd":
return freebsd
case "gentoo":
return gentoo
case "gnu":
return gnu
case "guix":
return guix
case "ios":
return ios
case "linuxmint":
return linuxmint
case "macos":
return macos
case "manjaro-arm":
return manjaroarm
case "manjaro":
return manjaro
case "openbsd":
return openbsd
case "opensuse-leap":
return opensuseleap
case "opensuse-tumbleweed":
return opensuseweed
case "pop":
return pop
case "raspbian":
return raspbian
case "slackware":
return slackware
case "solus":
return solus
case "ubuntu":
return ubuntu
case "void":
return void
case "xerolinux":
return xerolinux
case "arch":
return arch
default:
return unknown
}
@ -24,5 +157,14 @@ func GetAscii(distroID string) string {
ascii = strings.ReplaceAll(ascii, "{WHITE}", "")
ascii = strings.ReplaceAll(ascii, "{YELLOW}", "")
ascii = strings.ReplaceAll(ascii, "{BLUE}", "")
ascii = strings.ReplaceAll(ascii, "{LPINK}", "")
ascii = strings.ReplaceAll(ascii, "{BACKGROUND_GREEN}", "")
ascii = strings.ReplaceAll(ascii, "{NORMAL}", "")
ascii = strings.ReplaceAll(ascii, "{BLACK}", "")
ascii = strings.ReplaceAll(ascii, "{GREEN}", "")
ascii = strings.ReplaceAll(ascii, "{RED}", "")
ascii = strings.ReplaceAll(ascii, "{PINK}", "")
ascii = strings.ReplaceAll(ascii, "{MAGENTA}", "")
ascii = strings.ReplaceAll(ascii, "{CYAN}", "")
return ascii
}

View file

@ -4,5 +4,3 @@
| \____-
-_
--_\

View file

@ -5,4 +5,3 @@
| O ω O |
; ;
'-_____-'

View file

@ -5,4 +5,3 @@
/ _/
( _-
\\____-

View file

@ -5,4 +5,3 @@
`-'{YELLOW}(. .){WHITE}`-'
{YELLOW}\{WHITE}w{YELLOW}/
¯

View file

@ -5,4 +5,3 @@
`-'{YELLOW}(. .){WHITE}`-'
{YELLOW}\{WHITE}w{YELLOW}/
¯

View file

@ -4,4 +4,3 @@
{WHITE}|| {GREEN}| {WHITE}| | {GREEN}|
{WHITE} | {GREEN}| {WHITE}---- {GREEN}|
{WHITE} --{GREEN}'--------'

View file

@ -5,4 +5,3 @@
{PINK} w w
{MAGENTA} w w
{BLUE} www_-_www

View file

@ -4,5 +4,3 @@
_ / {WHITE}O O{GREEN}\
__. ω /
'----'

View file

@ -4,5 +4,3 @@
_ / {WHITE}O O{GREEN}\
__. ω /
'----'

View file

@ -4,4 +4,3 @@
| {LPINK}~ {WHITE}P! {LPINK}~ {BLUE}|
_ ---\ ω /
\_/ '-----'

View file

@ -4,4 +4,3 @@
(_(_)(_)_)
(_(__)_)
(__)

View file

@ -5,4 +5,3 @@
| {LPINK}~ {WHITE}S {LPINK}~ {MAGENTA}|
_ ---\ ω /
\_/ '-----'

View file

@ -5,4 +5,3 @@
|{BLUE}_{LPINK}~{BLUE}_____{LPINK}~{WHITE}\|
{BLUE}_ ---\ {WHITE}ω {BLUE}/
\_/ '-----'

View file

@ -4,4 +4,3 @@
(_) |>ω<| |
\ --- _/
{PINK}C__/{LPINK}---(_)

View file

@ -5,4 +5,3 @@
| | {WHITE}ÒωÓ {GREEN}| | ,
| \_____\_|-, |
-_______\ \_/

View file

@ -5,4 +5,3 @@ ______ / \______
____/__/__\__\___
/ __| |__-\
/_-'' ''-_\

BIN
main Executable file

Binary file not shown.