Fix nixos_small logo (#421)

* [F] Fix nixos_small logo

* [F] Fix nixos_small logo missing line break

* [?] i was trying to fix a difference between the python version and the rust version what the hell dude
This commit is contained in:
Emi 2025-08-27 08:10:59 +02:00 committed by GitHub
parent 5fd4ed9b0c
commit f02ec8c4ba
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 198 additions and 198 deletions

View file

@ -3,7 +3,7 @@
from . import AsciiArt from . import AsciiArt
nixos_small = AsciiArt(match=r'''"nixos_small"''', color='4 6', ascii=r""" nixos_small = AsciiArt(match=r'''"nixos_small"''', color='4 6', ascii=r"""
${c1} \\ \\ // ${c1}\\ \\ //
==\\__\\/ // ==\\__\\/ //
// \\// // \\//
==// //== ==// //==
@ -11,4 +11,4 @@ nixos_small = AsciiArt(match=r'''"nixos_small"''', color='4 6', ascii=r"""
// /\\ \\== // /\\ \\==
// \\ \\ // \\ \\
""") """)

392
neofetch
View file

@ -225,7 +225,7 @@ package_managers="on"
# Show separate user and system packages for supported package managers # Show separate user and system packages for supported package managers
# #
# Default: 'on' # Default: 'on'
# Values: 'on', 'off' # Values: 'on', 'off'
# Flag: --package_separate # Flag: --package_separate
@ -1145,7 +1145,7 @@ get_distro() {
on|tiny) distro="LindowsOS" ;; on|tiny) distro="LindowsOS" ;;
*) distro="$(awk '/Version/ {print $2,$3}' /etc/lindowsos-version)" *) distro="$(awk '/Version/ {print $2,$3}' /etc/lindowsos-version)"
esac esac
elif [[ -f /etc/astra_version ]]; then elif [[ -f /etc/astra_version ]]; then
distro="Astra Linux" distro="Astra Linux"
distro_version="$(sed -nr 's/^[^0-9]*(([0-9]+\.)*[0-9]+).*/\1/p' < /etc/astra_version)" distro_version="$(sed -nr 's/^[^0-9]*(([0-9]+\.)*[0-9]+).*/\1/p' < /etc/astra_version)"
@ -1349,7 +1349,7 @@ get_distro() {
windows_version_verbose=$(trim "${windows_version_verbose/REG_SZ}") windows_version_verbose=$(trim "${windows_version_verbose/REG_SZ}")
buildnumber=$(reg query "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion" -v CurrentBuildNumber | grep REG_) buildnumber=$(reg query "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion" -v CurrentBuildNumber | grep REG_)
windows_version_verbose=$(trim "${windows_version_verbose/Windows}") windows_version_verbose=$(trim "${windows_version_verbose/Windows}")
windows_buildnumber=$(reg query "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion" -v CurrentBuildNumber | grep REG_) windows_buildnumber=$(reg query "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion" -v CurrentBuildNumber | grep REG_)
windows_buildnumber=${buildnumber/CurrentBuildNumber} windows_buildnumber=${buildnumber/CurrentBuildNumber}
windows_buildnumber=${buildnumber/REG_SZ} windows_buildnumber=${buildnumber/REG_SZ}
if [[ "$windows_version_verbose" == *"10"* ]] && (( windows_buildnumber >= 22000 )); then if [[ "$windows_version_verbose" == *"10"* ]] && (( windows_buildnumber >= 22000 )); then
@ -1936,7 +1936,7 @@ get_kernel() {
*) kernel=${ver} ;; *) kernel=${ver} ;;
esac esac
return return
} }
# In Interix the Kernel version is commonly comprised of the host OS build number, # In Interix the Kernel version is commonly comprised of the host OS build number,
# OS architecture and Interix build number # OS architecture and Interix build number
@ -2193,7 +2193,7 @@ get_packages() {
has radula && tot radula -cl has radula && tot radula -cl
# https://github.com/birb-linux/birb # https://github.com/birb-linux/birb
has birb && tot birb --list-installed has birb && tot birb --list-installed
has port && pkgs_h=1 tot port installed && ((packages-=1)) has port && pkgs_h=1 tot port installed && ((packages-=1))
# Using the dnf package cache is much faster than rpm. # Using the dnf package cache is much faster than rpm.
@ -2324,7 +2324,7 @@ get_packages() {
has snap && ps -e | grep -qFm 1 snapd >/dev/null && \ has snap && ps -e | grep -qFm 1 snapd >/dev/null && \
pkgs_h=1 tot snap list && ((packages-=1)) pkgs_h=1 tot snap list && ((packages-=1))
# Get AppImageLauncher Application directory, # Get AppImageLauncher Application directory,
# See: https://github.com/TheAssassin/AppImageLauncher/wiki/Configuration#settings-file # See: https://github.com/TheAssassin/AppImageLauncher/wiki/Configuration#settings-file
manager=appimage && has appimaged || [ -f "$HOME"/.config/appimagelauncher.cfg ] && manager=appimage && has appimaged || [ -f "$HOME"/.config/appimagelauncher.cfg ] &&
if [ -f "$HOME"/.config/appimagelauncher.cfg ]; then if [ -f "$HOME"/.config/appimagelauncher.cfg ]; then
@ -2336,7 +2336,7 @@ get_packages() {
AIDIR="$HOME/.local/bin" AIDIR="$HOME/.local/bin"
fi && fi &&
dir "$AIDIR/*.[Aa]pp[Ii]mage \ dir "$AIDIR/*.[Aa]pp[Ii]mage \
$ALDIR/*.[Aa]pp[Ii]mage" $ALDIR/*.[Aa]pp[Ii]mage"
# Has devbox & is initialized # Has devbox & is initialized
has devbox && [[ "$(devbox global list)" != *"not activated"* ]] && tot devbox global list has devbox && [[ "$(devbox global list)" != *"not activated"* ]] && tot devbox global list
@ -2519,7 +2519,7 @@ get_editor() {
esac esac
editor_v="${editor_v/$'\n'*}" editor_v="${editor_v/$'\n'*}"
editor_v="${editor_v/Version: }" editor_v="${editor_v/Version: }"
# Only show editor name if the version string doesn't contain it # Only show editor name if the version string doesn't contain it
echo "$editor_v" | grep -i "$editor_name" &> /dev/null && editor_name="" echo "$editor_v" | grep -i "$editor_name" &> /dev/null && editor_name=""
editor=${editor_name}${editor_v:+ }${editor_v} editor=${editor_name}${editor_v:+ }${editor_v}
@ -2983,7 +2983,7 @@ get_wm_theme() {
wm_theme=$(leftwm-theme status | grep "Your current theme" | sed -e 's/Your current theme is //g' -e 's/\,.*$//g') wm_theme=$(leftwm-theme status | grep "Your current theme" | sed -e 's/Your current theme is //g' -e 's/\,.*$//g')
fi fi
;; ;;
fly-wm) fly-wm)
fly_config_file fly_config_file
if grep -q 'DecorTheme' "${fly_config_file}" 2>/dev/null; then if grep -q 'DecorTheme' "${fly_config_file}" 2>/dev/null; then
@ -7440,7 +7440,7 @@ EOF
;; ;;
"ArseLinux"*) "ArseLinux"*)
set_colors 4 7 set_colors 4 7
read -rd '' ascii_data <<'EOF' read -rd '' ascii_data <<'EOF'
${c1} ${c1}
⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ ⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
@ -7972,7 +7972,7 @@ EOF
"aerOS"*) "aerOS"*)
set_colors fg 0 0 0 set_colors fg 0 0 0
read -rd '' ascii_data <<'EOF' read -rd '' ascii_data <<'EOF'
${c1} ${c1}
ooo OOO OOO ooo ooo OOO OOO ooo
oOO OOo oOO OOo
oOO OOo oOO OOo
@ -8192,23 +8192,23 @@ EOF
"azos"*) "azos"*)
set_colors 6 1 set_colors 6 1
read -rd '' ascii_data <<'EOF' read -rd '' ascii_data <<'EOF'
${c1} ////. ${c2} ((((( ${c1} ////. ${c2} (((((
${c1} //////// ${c2} @(((((((( ${c1} //////// ${c2} @((((((((
${c1} //////// ${c2} @(((((((( ${c1} //////// ${c2} @((((((((
${c1} //////// /////// ${c2} ((((((( @(((((((( ${c1} //////// /////// ${c2} ((((((( @((((((((
${c1} //////// ///////// ${c2} ((((((((( @(((((((( ${c1} //////// ///////// ${c2} ((((((((( @((((((((
${c1} //////// ///////// ${c2} ((((((((( @(((((((( ${c1} //////// ///////// ${c2} ((((((((( @((((((((
${c1} //////// ///////// ////// ${c2} (((((( ((((((((( @(((((((( ${c1} //////// ///////// ////// ${c2} (((((( ((((((((( @((((((((
${c1} //////// ///////// //////// ${c2} (((((((( ((((((((( @(((((((( ${c1} //////// ///////// //////// ${c2} (((((((( ((((((((( @((((((((
${c1} //////// ///////// //////// ${c2} (((((((( ((((((((( @(((((((( ${c1} //////// ///////// //////// ${c2} (((((((( ((((((((( @((((((((
${c1} //////// ///////// //////// ${c2} ((((((( ((((((((( @(((((((( ${c1} //////// ///////// //////// ${c2} ((((((( ((((((((( @((((((((
${c1} //////// ///////// /// ${c2} ( ((((((((( @(((((((( ${c1} //////// ///////// /// ${c2} ( ((((((((( @((((((((
${c1} //////// ///////// ${c2} ((((((((( @(((((((( ${c1} //////// ///////// ${c2} ((((((((( @((((((((
${c1} //////// ///////// ${c2} &(((((((( @(((((((( ${c1} //////// ///////// ${c2} &(((((((( @((((((((
${c1} //////// ////// ${c2} @(((( @(((((((( ${c1} //////// ////// ${c2} @(((( @((((((((
${c1} //////// ${c2} @(((((((( ${c1} //////// ${c2} @((((((((
${c1} //////// ${c2} @(((((((( ${c1} //////// ${c2} @((((((((
${c1} ///// ${c2} ((((( ${c1} ///// ${c2} (((((
EOF EOF
;; ;;
@ -8367,7 +8367,7 @@ EOF
"BlackMesa") "BlackMesa")
set_colors 1 set_colors 1
read -rd '' ascii_data <<'EOF' read -rd '' ascii_data <<'EOF'
${c1} ${c1}
.-;+$XHHHHHHX$+;-. .-;+$XHHHHHHX$+;-.
,;X@@X%/;=----=:/%X@@X/, ,;X@@X%/;=----=:/%X@@X/,
=$@@%=. .=+H@X: =$@@%=. .=+H@X:
@ -9285,16 +9285,16 @@ ${c2}
${c3}MMM1ua${c2} ${c3}MMM1ua${c2}
${c1}MM${c2}EE ${c3} MMMMM1uazE${c2} ${c1}MM${c2}EE ${c3} MMMMM1uazE${c2}
${c1}MM ${c2}EEEE ${c3}M1MM1uazzEn ${c2}EEEE MME ${c1}MM ${c2}EEEE ${c3}M1MM1uazzEn ${c2}EEEE MME
EEEEE ${c3}MMM uazEno ${c2}EEEE EEEEE ${c3}MMM uazEno ${c2}EEEE
EEEEE${c1}MMMMMMEno~; ${c2}EE E${c2} EEEEE${c1}MMMMMMEno~; ${c2}EE E${c2}
EE ${c1}MMMMMMMM~;;E ${c2}MMMMM M ${c2} EE ${c1}MMMMMMMM~;;E ${c2}MMMMM M ${c2}
E ${c1}MMMMMMMMM ${c2} E E ${c2} E ${c1}MMMMMMMMM ${c2} E E ${c2}
${c1}MMMMMMMMMMM ${c1}MMMMMMMMMMM
${c1}MMMMMMMMM ${c2}EE ${c1} ${c1}MMMMMMMMM ${c2}EE ${c1}
MM1MMMM ${c2}EEE ${c1} MM1MMMM ${c2}EEE ${c1}
MMMMM MMMMM
MMM MMM
M M
EOF EOF
;; ;;
@ -9442,24 +9442,24 @@ EOF
"openKylin"*) "openKylin"*)
set_colors 2 7 set_colors 2 7
read -rd '' ascii_data <<'EOF' read -rd '' ascii_data <<'EOF'
${c1} ${c1}
/KKK] /KKK]
KKKKKKK` ]KKKK\ KKKKKKK` ]KKKK\
KKKKK/ /KKKKKKKKK\ KKKKK/ /KKKKKKKKK\
KKKK/ ,KKKKKKKKKKKK^ KKKK/ ,KKKKKKKKKKKK^
,]KKK =KKK` /KKKKKKOOOOOO` ,]KKK =KKK` /KKKKKKOOOOOO`
,KKKKKK =KK /` [\OOOOOOO\ ,KKKKKK =KK /` [\OOOOOOO\
\KKKKK =K ,OOOOOOO` \KKKKK =K ,OOOOOOO`
,KKKKK =^ \OOOOOO ,KKKKK =^ \OOOOOO
,KKKK ^ OOOOOO^ ,KKKK ^ OOOOOO^
*KKK^ =OOOOO^ *KKK^ =OOOOO^
OOKK^ OOOOOO^ OOKK^ OOOOOO^
\OOOK\ /OOOOOO` \OOOK\ /OOOOOO`
OOOOOO] ,OOOOOOO^ OOOOOO] ,OOOOOOO^
,OOOOOOOO\] ,[OOOOOOOOO/ ,OOOOOOOO\] ,[OOOOOOOOO/
\OOOOOOOOOOOOOOOOOOOOO` \OOOOOOOOOOOOOOOOOOOOO`
[OOOOOOOOOOOOOOOO/` [OOOOOOOOOOOOOOOO/`
,[OOOOOOOOO] ,[OOOOOOOOO]
EOF EOF
;; ;;
@ -9890,21 +9890,21 @@ EOF
"eweOS"*) "eweOS"*)
set_colors 7 11 9 8 1 set_colors 7 11 9 8 1
read -rd '' ascii_data <<'EOF' read -rd '' ascii_data <<'EOF'
${c2} #####%%% ${c2} #####%%%
${c2} ##%%${c3}////${c2}%%%%%${c3}/// ${c2} ##%%${c3}////${c2}%%%%%${c3}///
${c2} #%%%%${c3}////((((////${c2}% ${c2} #%%%%${c3}////((((////${c2}%
${c1} *@@@@@@@${c3}/${c5},,,${c3}/////${c5},,,${c2}%${c1}@@@@@@@ ${c1} *@@@@@@@${c3}/${c5},,,${c3}/////${c5},,,${c2}%${c1}@@@@@@@
${c1} .@@@@@@@@@@@${c3}////////${c2}%%%${c1}@@@@@@@@@@@@ ${c1} .@@@@@@@@@@@${c3}////////${c2}%%%${c1}@@@@@@@@@@@@
${c1} @@@${c4}...${c1}@@@@@@${c3}////${c2}%%${c3}////${c1}@@@@@@@@@@@@@@@@ ${c1} @@@${c4}...${c1}@@@@@@${c3}////${c2}%%${c3}////${c1}@@@@@@@@@@@@@@@@
${c1} @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ ${c1} @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
${c1} @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ ${c1} @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
${c1} @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ ${c1} @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
${c1} @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ ${c1} @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
${c1} @@@@@@@@@@@@@@@@@@@@@@@@@@@@@ ${c1} @@@@@@@@@@@@@@@@@@@@@@@@@@@@@
${c1} @@@@@@@@@@@@@@@@@@@@@@@@@@@ ${c1} @@@@@@@@@@@@@@@@@@@@@@@@@@@
${c1} @@@@@@@@@@@@@@@@@@@@@@@ ${c1} @@@@@@@@@@@@@@@@@@@@@@@
${c1} @@@@@@ @@@@@@ ${c1} @@@@@@ @@@@@@
${c1} @@@ @@@ ${c1} @@@ @@@
EOF EOF
;; ;;
@ -12126,7 +12126,7 @@ EOF
"nixos_small") "nixos_small")
set_colors 4 6 set_colors 4 6
read -rd '' ascii_data <<'EOF' read -rd '' ascii_data <<'EOF'
${c1} \\\\ \\\\ // ${c1} \\\\ \\\\ //
==\\\\__\\\\/ // ==\\\\__\\\\/ //
// \\\\// // \\\\//
==// //== ==// //==
@ -13034,39 +13034,39 @@ EOF
set_colors 11 set_colors 11
read -rd '' ascii_data <<'EOF' read -rd '' ascii_data <<'EOF'
${c1} ${c1}
'',,, ,,,d, '',,, ,,,d,
',, ,,' ',, ,,'
', ,. ', ,.
., ' ., '
. . . .
' . ' .
.. oddddkdlc:;,.. .. .. oddddkdlc:;,.. ..
. ............lllc, . . ............lllc, .
. ....................: . . ....................: .
. . .................... . . ....................
'. ..........'o........d0XX0. '. ..........'o........d0XX0.
....lllllllcOOOcllllll............cxlxc...;okkkx. ....lllllllcOOOcllllll............cxlxc...;okkkx.
..................................';lc'...lo. ..................................';lc'...lo.
.'''''''''''''.....................,;,....... .'''''''''''''.....................,;,.......
',,,,,,,,,,,,,,,,''...............dkkkd...... ',,,,,,,,,,,,,,,,''...............dkkkd......
',,,,,,,,,,,,,,,,,,,'............;okkkd;.... ',,,,,,,,,,,,,,,,,,,'............;okkkd;....
.,,,,,,,,,,,,,,,,,,,,,............;cll;..... .,,,,,,,,,,,,,,,,,,,,,............;cll;.....
,,,,,,,,,,,,,,,,,,,,'....................:d, ,,,,,,,,,,,,,,,,,,,,'....................:d,
,,,,,,,,,,,,,,,,,,,....................oxxx: ,,,,,,,,,,,,,,,,,,,....................oxxx:
.,,,,,,,,,,,,,,,,,'..................oxxxxx. . .,,,,,,,,,,,,,,,,,'..................oxxxxx. .
.,,,,,,,,,,,,,,'.......... ,oxxxxxxx . .,,,,,,,,,,,,,,'.......... ,oxxxxxxx .
.;,,,,,,,,,,,,'.. 'cxxxxxxxxx, .;,,,,,,,,,,,,'.. 'cxxxxxxxxx,
:dl:,'',,'.... .;lxxxxxxxxxd; :dl:,'',,'.... .;lxxxxxxxxxd;
,codol:;'. ...,;cldxxxxxxxxxoc. ,codol:;'. ...,;cldxxxxxxxxxoc.
.:cxxxxxdlccccc:ccldxxxxxxxxxxxxxx::. .:cxxxxxdlccccc:ccldxxxxxxxxxxxxxx::.
.'::dxxxxxxxxxxxxxxxxxxxxxxxd::'. .'::dxxxxxxxxxxxxxxxxxxxxxxxd::'.
..,::cdxxxxxxxxxxxxxdc::,.. ..,::cdxxxxxxxxxxxxxdc::,..
...,;:::::::;,... ...,;:::::::;,...
EOF EOF
;; ;;
"phyOS"*) "phyOS"*)
set_colors 33 33 7 1 set_colors 33 33 7 1
read -rd '' ascii_data <<'EOF' read -rd '' ascii_data <<'EOF'
@ -13530,26 +13530,26 @@ EOF
"Reborn OS"* | "Reborn"*) "Reborn OS"* | "Reborn"*)
set_colors 0 4 6 set_colors 0 4 6
read -rd '' ascii_data <<'EOF' read -rd '' ascii_data <<'EOF'
${c1} .======================. ${c1} .======================.
${c1}.#${c2}#*********${c1}%%${c2}*********#${c1}%: ${c1}.#${c2}#*********${c1}%%${c2}*********#${c1}%:
${c1}:%${c2}#**********${c1}%%${c2}**********#${c1}%- ${c1}:%${c2}#**********${c1}%%${c2}**********#${c1}%-
${c1}-%${c2}************${c1}%%${c2}************${c1}%= ${c1}-%${c2}************${c1}%%${c2}************${c1}%=
${c1}+%${c2}******${c1}%%#####${c1}%%#####%%${c2}******${c1}%+ ${c1}+%${c2}******${c1}%%#####${c1}%%#####%%${c2}******${c1}%+
${c1}*%%#${c2}****${c1}%#${c3}+=====${c1}%%${c3}=====+${c1}#%${c2}****${c1}#%%* ${c1}*%%#${c2}****${c1}%#${c3}+=====${c1}%%${c3}=====+${c1}#%${c2}****${c1}#%%*
${c1}*%${c2}*#${c1}#%%#%#${c3}====+++${c1}%%${c3}+++====${c1}#%#%%#${c2}#*${c1}##. ${c1}*%${c2}*#${c1}#%%#%#${c3}====+++${c1}%%${c3}+++====${c1}#%#%%#${c2}#*${c1}##.
${c1}.##${c2}*****${c1}#%%%#${c3}*++${c1}%######%${c3}*+*${c1}#%%%#${c2}*****${c1}#%. ${c1}.##${c2}*****${c1}#%%%#${c3}*++${c1}%######%${c3}*+*${c1}#%%%#${c2}*****${c1}#%.
${c1}:%#${c2}*****${c1}#%${c3}*=+*${c1}#%%${c3}*++++++*${c1}%%#${c3}*+=*${c1}%#${c2}*****${c1}#%: ${c1}:%#${c2}*****${c1}#%${c3}*=+*${c1}#%%${c3}*++++++*${c1}%%#${c3}*+=*${c1}%#${c2}*****${c1}#%:
${c1}-%#${c2}*****${c1}#%${c3}+====*${c1}%${c3}*++++++++*${c1}%#${c3}====+${c1}%#${c2}******${c1}%- ${c1}-%#${c2}*****${c1}#%${c3}+====*${c1}%${c3}*++++++++*${c1}%#${c3}====+${c1}%#${c2}******${c1}%-
${c1}-%#${c2}*****${c1}#%${c3}+====*${c1}%${c3}*++++++++*${c1}%#${c3}====+${c1}%#${c2}******${c1}%= ${c1}-%#${c2}*****${c1}#%${c3}+====*${c1}%${c3}*++++++++*${c1}%#${c3}====+${c1}%#${c2}******${c1}%=
${c1}:%#${c2}*****${c1}#%${c3}*=+*${c1}#%%${c3}*++++++*${c1}%%#${c3}*+=*${c1}%#${c2}*****${c1}#%- ${c1}:%#${c2}*****${c1}#%${c3}*=+*${c1}#%%${c3}*++++++*${c1}%%#${c3}*+=*${c1}%#${c2}*****${c1}#%-
${c1}.##${c2}*****${c1}#%%%#${c3}*+*${c1}%######%${c3}*+*${c1}#%%%#${c2}*****${c1}#%: ${c1}.##${c2}*****${c1}#%%%#${c3}*+*${c1}%######%${c3}*+*${c1}#%%%#${c2}*****${c1}#%:
${c1}.##${c2}**${c1}#%%#%#${c3}====+++${c1}%%${c3}+++====${c1}#%#%%#${c2}#*${c1}##. ${c1}.##${c2}**${c1}#%%#%#${c3}====+++${c1}%%${c3}+++====${c1}#%#%%#${c2}#*${c1}##.
${c1}*%%#${c2}****${c1}%#${c3}+=====${c1}%%${c3}=====+${c1}#%${c2}****${c1}#%%* ${c1}*%%#${c2}****${c1}%#${c3}+=====${c1}%%${c3}=====+${c1}#%${c2}****${c1}#%%*
${c1}+%${c2}******${c1}%%#####%%#####%%${c2}******${c1}%* ${c1}+%${c2}******${c1}%%#####%%#####%%${c2}******${c1}%*
${c1}-%${c2}************${c1}%%${c2}************${c1}%= ${c1}-%${c2}************${c1}%%${c2}************${c1}%=
${c1}:%${c2}#**********${c1}%%${c2}**********#${c1}%- ${c1}:%${c2}#**********${c1}%%${c2}**********#${c1}%-
${c1}:%${c2}#*********${c1}%%${c2}*********#${c1}%: ${c1}:%${c2}#*********${c1}%%${c2}*********#${c1}%:
${c1}.======================. ${c1}.======================.
EOF EOF
;; ;;
@ -13723,20 +13723,20 @@ EOF
"RhaymOS"*) "RhaymOS"*)
set_colors 1 set_colors 1
read -rd '' ascii_data <<'EOF' read -rd '' ascii_data <<'EOF'
${c1} ${c1}
### ###
##### #####
####### /######## ####### /########
############# ########### ############# ###########
,########### #### ####(.. ,########### #### ####(..
#### #### ####* ########## #### #### ####* ##########
#### ##### ##### (#### #### ##### ##### (####
#### ########### ########### #### ########### ###########
#### ######### ########## #### ######### ##########
################################### ###################################
##################################### #####################################
####################################### #######################################
EOF EOF
;; ;;
@ -15046,29 +15046,29 @@ oss${c2}yNMMMNyMMh${c1}sssssssssssssshmmmh${c1}ssssssso
.-\+oossssoo+/-. .-\+oossssoo+/-.
EOF EOF
;; ;;
"Floflis"*) "Floflis"*)
set_colors 1 7 3 set_colors 1 7 3
read -rd '' ascii_data <<'EOF' read -rd '' ascii_data <<'EOF'
\e[96m ,▄▄▄▌▓▓███▓▓▌▄▄▄, \e[96m ,▄▄▄▌▓▓███▓▓▌▄▄▄,
,▄▒▓███████████████████▓▄▄ ,▄▒▓███████████████████▓▄▄
▄▓███████████████████████████▌ ▄▓███████████████████████████▌
▓███████████████████████████████ ▓███████████████████████████████
, ╙▓████████████████████████████▀ ▄ , ╙▓████████████████████████████▀ ▄
╓█▓▄ ╙▀▓████████████████████▀▀` ,▄██▓ ╓█▓▄ ╙▀▓████████████████████▀▀` ,▄██▓
╓█████▌▄, '▀▀▀▀▓▓▓▓▓▓▀▀Å╙` ▄▄▓█████▌ ╓█████▌▄, '▀▀▀▀▓▓▓▓▓▓▀▀Å╙` ▄▄▓█████▌
██████████▓▌▄ , ▄▓███████████▄ ██████████▓▌▄ , ▄▓███████████▄
╢████████████▓ ║████▓▓███▌ ╣█████████████▓ ╢████████████▓ ║████▓▓███▌ ╣█████████████▓
▓█████████████ ▐█████████▀ ▓██████████████ ▓█████████████ ▐█████████▀ ▓██████████████
▓█████████████ ▐█████████▄ ███████████████ ▓█████████████ ▐█████████▄ ███████████████
▀████████████▌ ║█████████▌ ▀█████████████▌ ▀████████████▌ ║█████████▌ ▀█████████████▌
████████████M ▓██████████ ▐█████████████⌐ ████████████M ▓██████████ ▐█████████████⌐
▀██████████▌ ▐███████████▌ ▀███████████▌ ▀██████████▌ ▐███████████▌ ▀███████████▌
╙▓█████▓ ▓██████████████▄ ▀███████▀ ╙▓█████▓ ▓██████████████▄ ▀███████▀
╝▓██▀ ╓▓████████████████▓ ▀▓██▀ ╝▓██▀ ╓▓████████████████▓ ▀▓██▀
,▄████████████████████▌, ,▄████████████████████▌,
╝▀████████████████████▓▀' ╝▀████████████████████▓▀'
`╙▀▀▓▓███████▓▀▀╩' `╙▀▀▓▓███████▓▀▀╩'
EOF EOF
;; ;;
@ -15234,26 +15234,26 @@ EOF
set_colors 12 12 7 12 4 set_colors 12 12 7 12 4
read -rd '' ascii_data <<'EOF' read -rd '' ascii_data <<'EOF'
${c3} :${c4}:::::::::::::: ${c5}. ${c3} :${c4}:::::::::::::: ${c5}.
${c3}=#${c4}*============. ${c5}:#: ${c3}=#${c4}*============. ${c5}:#:
${c3}=##%${c4}+----------. ${c5}.###: ${c3}=##%${c4}+----------. ${c5}.###:
${c3}=####. ${c5}.####: ${c3}=####. ${c5}.####:
${c3}=####. ${c5}.####: ${c3}=####. ${c5}.####:
${c3}=###*. .=${c4}--------. ${c5}####: ${c3}=###*. .=${c4}--------. ${c5}####:
${c3}=####. .*#+${c4}======- ${c5}####: ${c3}=####. .*#+${c4}======- ${c5}####:
${c3}=###*. .*###+${c4}====- ${c5}####: ${c3}=###*. .*###+${c4}====- ${c5}####:
${c3}=###*. .*#####+${c4}==- ${c5}####: ${c3}=###*. .*#####+${c4}==- ${c5}####:
${c3}=###*. .*#######+${c4}: ${c5}####: ${c3}=###*. .*#######+${c4}: ${c5}####:
${c3}=###*. .*#######+${c4}: ${c5}####: ${c3}=###*. .*#######+${c4}: ${c5}####:
${c3}=###*. .*#####+${c4}==- ${c5}####: ${c3}=###*. .*#####+${c4}==- ${c5}####:
${c3}=###*. .*###+${c4}====- ${c5}####: ${c3}=###*. .*###+${c4}====- ${c5}####:
${c3}=####. .*#+${c4}======- ${c5}####: ${c3}=####. .*#+${c4}======- ${c5}####:
${c3}=###*. .=${c4}--------. ${c5}.####: ${c3}=###*. .=${c4}--------. ${c5}.####:
${c3}=####. ${c5}.####: ${c3}=####. ${c5}.####:
${c3}=####. ${c5}.####: ${c3}=####. ${c5}.####:
${c3}=###+${c4}--------------${c5}####: ${c3}=###+${c4}--------------${c5}####:
${c3}=#+${c4}=================-${c5}: ${c3}=#+${c4}=================-${c5}:
${c3}:${c4}::::::::::::::::::. ${c3}:${c4}::::::::::::::::::.
EOF EOF
;; ;;
@ -15279,25 +15279,25 @@ EOF
set_colors 8 4 set_colors 8 4
read -rd '' ascii_data <<'EOF' read -rd '' ascii_data <<'EOF'
${c1} ${c1}
`-` `-`
-yys+/-` -yys+/-`
`oyyyyy: /osyyyyso+:. `oyyyyy: /osyyyyso+:.
/yyyyy+`+yyyyyyyyyys/. /yyyyy+`+yyyyyyyyyys/.
.-yyyyys.:+//+oyyyyyyyo. .-yyyyys.:+//+oyyyyyyyo.
`oy/`oyyyyy/ ./syyyyy: `oy/`oyyyyy/ ./syyyyy:
syyys`:yyyyyo` :yyyyy: syyys`:yyyyyo` :yyyyy:
/yyyyo .syyyyy- .yyyyy. /yyyyo .syyyyy- .yyyyy.
yyyyy. +yyyyy/ /yyyy/ yyyyy. +yyyyy/ /yyyy/
`yyyyy :yyyyys` -yyyyo `yyyyy :yyyyys` -yyyyo
yyyyy. `syyyyy- /yyyy/ yyyyy. `syyyyy- /yyyy/
/yyyyo /yyyyy+ .yyyyy. /yyyyo /yyyyy+ .yyyyy.
syyyys. -yyyyys.:yyyy: syyyys. -yyyyys.:yyyy:
`oyyyyyo-` `oyyyyy:.sy: `oyyyyyo-` `oyyyyy:.sy:
:syyyyyyso+/++`/yyyyyo`` :syyyyyyso+/++`/yyyyyo``
-oyyyyyyyyyyy-.syyyys. -oyyyyyyyyyyy-.syyyys.
-/+osyyyyso.`+yyyyy/ -/+osyyyyso.`+yyyyy/
.-/+syo` .-/+syo`
`. `.
EOF EOF
;; ;;
@ -15798,21 +15798,21 @@ EOF
set_colors 4 7 set_colors 4 7
read -rd '' ascii_data <<'EOF' read -rd '' ascii_data <<'EOF'
${c1} ${c1}
. .:. . .:. . .:. . .:.
.^^.!.:::. .^!?J?^ .^^.!.:::. .^!?J?^
.:^.^!!!~:~^. .7??77!~~^. .:^.^!!!~:~^. .7??77!~~^.
.~^.!??77?!.^~: ..:^^7JJJ7~~^. .~^.!??77?!.^~: ..:^^7JJJ7~~^.
.^~.^7???7~.~~. .7??????????! .^~.^7???7~.~~. .7??????????!
.:^:^^~^^:!^ ^: .......^!:... .:^:^^~^^:!^ ^: .......^!:...
.!7~.::.!.::. ~BG~ :^ ^~: .!7~.::.!.::. ~BG~ :^ ^~:
:!!~ ~. ?BBBB! ^?J!. .!~. :!!~ ~. ?BBBB! ^?J!. .!~.
:!. .JBY. .Y#BBBY?~!???J7. :^^. :!. .JBY. .Y#BBBY?~!???J7. :^^.
.. :5#B#P~P#BBP?7?55J?J7: .. :5#B#P~P#BBP?7?55J?J7:
^P#BBBBBBBB5?7J5555J!..... ^P#BBBBBBBB5?7J5555J!.....
!BBBBBBGBBGJ77::Y555J?77777^ !BBBBBBGBBGJ77::Y555J?77777^
?BBBBG5JJ5PJ?!: .?Y??????77?~. ?BBBBG5JJ5PJ?!: .?Y??????77?~.
.YBGPYJ??????Y?^^^^~7?????????7?!. .YBGPYJ??????Y?^^^^~7?????????7?!.
.^^:..::::::::.....:::::::::::..:. .^^:..::::::::.....:::::::::::..:.
EOF EOF
;; ;;