MORE ASCIIS THANKS UWUFETCH
This commit is contained in:
parent
9a98330276
commit
cc6ad35e54
21 changed files with 145 additions and 28 deletions
|
@ -4,5 +4,3 @@
|
||||||
/OωO\ɛU\/ __
|
/OωO\ɛU\/ __
|
||||||
/ \ \__/ \
|
/ \ \__/ \
|
||||||
/ \ \
|
/ \ \
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -3,6 +3,3 @@
|
||||||
/ \
|
/ \
|
||||||
| {RED}~ {GREEN}> ω < {RED}~ {GREEN}|
|
| {RED}~ {GREEN}> ω < {RED}~ {GREEN}|
|
||||||
------------
|
------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -5,4 +5,3 @@
|
||||||
/ __ \
|
/ __ \
|
||||||
/ __| |__-\
|
/ __| |__-\
|
||||||
/_-'' ''-_\
|
/_-'' ''-_\
|
||||||
|
|
||||||
|
|
|
@ -6,15 +6,148 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
//go:embed alpine.txt
|
//go:embed alpine.txt
|
||||||
var Alpine string
|
var alpine string
|
||||||
|
|
||||||
//go:embed unknown.txt
|
//go:embed unknown.txt
|
||||||
var unknown string
|
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 {
|
func GetAsciiInternal(distroID string) string {
|
||||||
switch distroID {
|
switch distroID {
|
||||||
case "Alpine":
|
case "alpine":
|
||||||
return 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:
|
default:
|
||||||
return unknown
|
return unknown
|
||||||
}
|
}
|
||||||
|
@ -24,5 +157,14 @@ func GetAscii(distroID string) string {
|
||||||
ascii = strings.ReplaceAll(ascii, "{WHITE}", "")
|
ascii = strings.ReplaceAll(ascii, "{WHITE}", "")
|
||||||
ascii = strings.ReplaceAll(ascii, "{YELLOW}", "")
|
ascii = strings.ReplaceAll(ascii, "{YELLOW}", "")
|
||||||
ascii = strings.ReplaceAll(ascii, "{BLUE}", "")
|
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
|
return ascii
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,5 +4,3 @@
|
||||||
| \____-
|
| \____-
|
||||||
-_
|
-_
|
||||||
--_\
|
--_\
|
||||||
|
|
||||||
|
|
|
@ -5,4 +5,3 @@
|
||||||
| O ω O |
|
| O ω O |
|
||||||
; ;
|
; ;
|
||||||
'-_____-'
|
'-_____-'
|
||||||
|
|
||||||
|
|
|
@ -5,4 +5,3 @@
|
||||||
/ _/
|
/ _/
|
||||||
( _-
|
( _-
|
||||||
\\____-
|
\\____-
|
||||||
|
|
||||||
|
|
|
@ -5,4 +5,3 @@
|
||||||
`-'{YELLOW}(. .){WHITE}`-'
|
`-'{YELLOW}(. .){WHITE}`-'
|
||||||
{YELLOW}\{WHITE}w{YELLOW}/
|
{YELLOW}\{WHITE}w{YELLOW}/
|
||||||
¯
|
¯
|
||||||
|
|
||||||
|
|
|
@ -5,4 +5,3 @@
|
||||||
`-'{YELLOW}(. .){WHITE}`-'
|
`-'{YELLOW}(. .){WHITE}`-'
|
||||||
{YELLOW}\{WHITE}w{YELLOW}/
|
{YELLOW}\{WHITE}w{YELLOW}/
|
||||||
¯
|
¯
|
||||||
|
|
||||||
|
|
|
@ -4,4 +4,3 @@
|
||||||
{WHITE}|| {GREEN}| {WHITE}| | {GREEN}|
|
{WHITE}|| {GREEN}| {WHITE}| | {GREEN}|
|
||||||
{WHITE} | {GREEN}| {WHITE}---- {GREEN}|
|
{WHITE} | {GREEN}| {WHITE}---- {GREEN}|
|
||||||
{WHITE} --{GREEN}'--------'
|
{WHITE} --{GREEN}'--------'
|
||||||
|
|
||||||
|
|
|
@ -5,4 +5,3 @@
|
||||||
{PINK} w w
|
{PINK} w w
|
||||||
{MAGENTA} w w
|
{MAGENTA} w w
|
||||||
{BLUE} www_-_www
|
{BLUE} www_-_www
|
||||||
|
|
||||||
|
|
|
@ -4,5 +4,3 @@
|
||||||
_ / {WHITE}O O{GREEN}\
|
_ / {WHITE}O O{GREEN}\
|
||||||
__. ω /
|
__. ω /
|
||||||
'----'
|
'----'
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -4,5 +4,3 @@
|
||||||
_ / {WHITE}O O{GREEN}\
|
_ / {WHITE}O O{GREEN}\
|
||||||
__. ω /
|
__. ω /
|
||||||
'----'
|
'----'
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -4,4 +4,3 @@
|
||||||
| {LPINK}~ {WHITE}P! {LPINK}~ {BLUE}|
|
| {LPINK}~ {WHITE}P! {LPINK}~ {BLUE}|
|
||||||
_ ---\ ω /
|
_ ---\ ω /
|
||||||
\_/ '-----'
|
\_/ '-----'
|
||||||
|
|
||||||
|
|
|
@ -4,4 +4,3 @@
|
||||||
(_(_)(_)_)
|
(_(_)(_)_)
|
||||||
(_(__)_)
|
(_(__)_)
|
||||||
(__)
|
(__)
|
||||||
|
|
||||||
|
|
|
@ -5,4 +5,3 @@
|
||||||
| {LPINK}~ {WHITE}S {LPINK}~ {MAGENTA}|
|
| {LPINK}~ {WHITE}S {LPINK}~ {MAGENTA}|
|
||||||
_ ---\ ω /
|
_ ---\ ω /
|
||||||
\_/ '-----'
|
\_/ '-----'
|
||||||
|
|
||||||
|
|
|
@ -5,4 +5,3 @@
|
||||||
|{BLUE}_{LPINK}~{BLUE}_____{LPINK}~{WHITE}\|
|
|{BLUE}_{LPINK}~{BLUE}_____{LPINK}~{WHITE}\|
|
||||||
{BLUE}_ ---\ {WHITE}ω {BLUE}/
|
{BLUE}_ ---\ {WHITE}ω {BLUE}/
|
||||||
\_/ '-----'
|
\_/ '-----'
|
||||||
|
|
||||||
|
|
|
@ -4,4 +4,3 @@
|
||||||
(_) |>ω<| |
|
(_) |>ω<| |
|
||||||
\ --- _/
|
\ --- _/
|
||||||
{PINK}C__/{LPINK}---(_)
|
{PINK}C__/{LPINK}---(_)
|
||||||
|
|
||||||
|
|
|
@ -5,4 +5,3 @@
|
||||||
| | {WHITE}ÒωÓ {GREEN}| | ,
|
| | {WHITE}ÒωÓ {GREEN}| | ,
|
||||||
| \_____\_|-, |
|
| \_____\_|-, |
|
||||||
-_______\ \_/
|
-_______\ \_/
|
||||||
|
|
||||||
|
|
|
@ -5,4 +5,3 @@ ______ / \______
|
||||||
____/__/__\__\___
|
____/__/__\__\___
|
||||||
/ __| |__-\
|
/ __| |__-\
|
||||||
/_-'' ''-_\
|
/_-'' ''-_\
|
||||||
|
|
||||||
|
|
BIN
main
Executable file
BIN
main
Executable file
Binary file not shown.
Loading…
Reference in a new issue