Last active
December 2, 2025 23:09
-
-
Save GoldenStack/f4b49fcbf60706737b5409fe26102bf2 to your computer and use it in GitHub Desktop.
Diff for my neofetch install. Includes formatter changes as I'm too lazy to turn them off.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/neofetch b/neofetch | |
| index 32601b5c..f2f2f254 100755 | |
| --- a/neofetch | |
| +++ b/neofetch | |
| @@ -225,7 +225,7 @@ package_managers="on" | |
| # Show separate user and system packages for supported package managers | |
| -# | |
| +# | |
| # Default: 'on' | |
| # Values: 'on', 'off' | |
| # Flag: --package_separate | |
| @@ -1145,7 +1145,7 @@ get_distro() { | |
| on|tiny) distro="LindowsOS" ;; | |
| *) distro="$(awk '/Version/ {print $2,$3}' /etc/lindowsos-version)" | |
| esac | |
| - | |
| + | |
| elif [[ -f /etc/astra_version ]]; then | |
| distro="Astra Linux" | |
| distro_version="$(sed -nr 's/^[^0-9]*(([0-9]+\.)*[0-9]+).*/\1/p' < /etc/astra_version)" | |
| @@ -1345,7 +1345,7 @@ get_distro() { | |
| windows_version_verbose=$(trim "${windows_version_verbose/REG_SZ}") | |
| buildnumber=$(reg query "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion" -v CurrentBuildNumber | grep REG_) | |
| 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/REG_SZ} | |
| if [[ "$windows_version_verbose" == *"10"* ]] && (( windows_buildnumber >= 22000 )); then | |
| @@ -1522,6 +1522,9 @@ get_distro() { | |
| distro=${distro//Enterprise Server} | |
| + distro="Red Star OS via $distro" | |
| + distro=${distro/Ubuntu/Ubuntu(*)} | |
| + | |
| [[ $distro ]] || distro="$os (Unknown)" | |
| # Get OS architecture. | |
| @@ -1559,6 +1562,8 @@ get_bios() { | |
| fi | |
| ;; | |
| esac | |
| + | |
| + bios="" | |
| } | |
| get_model() { | |
| @@ -1876,6 +1881,8 @@ get_model() { | |
| model=${model//All Series} | |
| model=${model//�} | |
| + model="$model, Angry Birds edition" | |
| + | |
| case $model in | |
| "Standard PC"*) model="KVM/QEMU (${model})" ;; | |
| OpenBSD*) model="vmm ($model)" ;; | |
| @@ -1932,7 +1939,7 @@ get_kernel() { | |
| *) kernel=${ver} ;; | |
| esac | |
| return | |
| - } | |
| + } | |
| # In Interix the Kernel version is commonly comprised of the host OS build number, | |
| # OS architecture and Interix build number | |
| @@ -1952,6 +1959,8 @@ get_kernel() { | |
| on|tiny) kernel=$kernel_version ;; | |
| *) unset kernel ;; | |
| esac | |
| + | |
| + kernel="(Steam Deck) $kernel" | |
| } | |
| get_uptime() { | |
| @@ -2018,6 +2027,8 @@ get_uptime() { | |
| ;; | |
| esac | |
| + s=$((s * 1813719)) | |
| + | |
| d="$((s / 60 / 60 / 24)) days" | |
| h="$((s / 60 / 60 % 24)) hours" | |
| m="$((s / 60 % 60)) minutes" | |
| @@ -2032,9 +2043,6 @@ get_uptime() { | |
| ((${h/ *} == 0)) && unset h | |
| ((${m/ *} == 0)) && unset m | |
| - # Add "(!)" if more than 100 days | |
| - ((${d/ *} > 100)) && d="${d}(!)" | |
| - | |
| uptime=${d:+$d, }${h:+$h, }$m | |
| uptime=${uptime%', '} | |
| uptime=${uptime:-$s seconds} | |
| @@ -2192,7 +2200,7 @@ get_packages() { | |
| has radula && tot radula -cl | |
| # https://github.com/birb-linux/birb | |
| has birb && tot birb --list-installed | |
| - | |
| + | |
| has port && pkgs_h=1 tot port installed && ((packages-=1)) | |
| # Using the dnf package cache is much faster than rpm. | |
| @@ -2324,7 +2332,7 @@ get_packages() { | |
| has snap && ps -e | grep -qFm 1 snapd >/dev/null && \ | |
| 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 | |
| manager=appimage && has appimaged || [ -f "$HOME"/.config/appimagelauncher.cfg ] && | |
| if [ -f "$HOME"/.config/appimagelauncher.cfg ]; then | |
| @@ -2336,7 +2344,7 @@ get_packages() { | |
| AIDIR="$HOME/.local/bin" | |
| fi && | |
| dir "$AIDIR/*.[Aa]pp[Ii]mage \ | |
| - $ALDIR/*.[Aa]pp[Ii]mage" | |
| + $ALDIR/*.[Aa]pp[Ii]mage" | |
| # Has devbox & is initialized | |
| has devbox && [[ "$(devbox global list)" != *"not activated"* ]] && tot devbox global list | |
| @@ -2421,6 +2429,8 @@ get_packages() { | |
| fi | |
| packages=${packages/pacman-key/pacman} | |
| + | |
| + packages="15172 (brew), $packages" | |
| } | |
| get_shell() { | |
| @@ -2483,6 +2493,8 @@ get_shell() { | |
| shell=${shell/xonsh\//xonsh } | |
| shell=${shell/options*} | |
| shell=${shell/\(*\)} | |
| + | |
| + shell="ChairmanMaoShell v3.6 CCP" | |
| } | |
| get_editor() { | |
| @@ -2519,7 +2531,7 @@ get_editor() { | |
| esac | |
| editor_v="${editor_v/$'\n'*}" | |
| editor_v="${editor_v/Version: }" | |
| - | |
| + | |
| # Only show editor name if the version string doesn't contain it | |
| echo "$editor_v" | grep -i "$editor_name" &> /dev/null && editor_name="" | |
| editor=${editor_name}${editor_v:+ }${editor_v} | |
| @@ -2679,6 +2691,8 @@ get_de() { | |
| de+=" (${XDG_SESSION_TYPE})" | |
| de_run=1 | |
| + | |
| + de=${de/wayland/KDE} | |
| } | |
| get_wm() { | |
| @@ -2814,6 +2828,8 @@ get_wm() { | |
| [[ $wm == *GNOME*Shell* ]] && wm=Mutter | |
| wm_run=1 | |
| + | |
| + wm="" | |
| } | |
| get_wm_theme() { | |
| @@ -2983,7 +2999,7 @@ get_wm_theme() { | |
| wm_theme=$(leftwm-theme status | grep "Your current theme" | sed -e 's/Your current theme is //g' -e 's/\,.*$//g') | |
| fi | |
| ;; | |
| - | |
| + | |
| fly-wm) | |
| fly_config_file | |
| if grep -q 'DecorTheme' "${fly_config_file}" 2>/dev/null; then | |
| @@ -3437,6 +3453,8 @@ END | |
| deg="[${deg/${deg: -1}}.${deg: -1}°${cpu_temp:-C}]" | |
| cpu="$cpu $deg" | |
| fi | |
| + | |
| + cpu="N/A (unsupported)" | |
| } | |
| get_gpu() { | |
| @@ -3518,7 +3536,7 @@ get_gpu() { | |
| gpu="${gpu/Intel }" | |
| fi | |
| - prin "${subtitle:+${subtitle}${gpu_name}}" "$gpu" | |
| + prin "${subtitle:+${subtitle}${gpu_name}}" "2x NVIDIA GeForce RTX 5090 with $gpu" | |
| done | |
| return | |
| @@ -3774,6 +3792,11 @@ get_memory() { | |
| mem_total="$(( $(showmem -t) * 1000 ))" | |
| esac | |
| + mem_free=$(( mem_free * 1000 )) | |
| + mem_avail=$(( mem_avail * 1000 )) | |
| + mem_used=$(( mem_used * 1000 )) | |
| + mem_total=$(( mem_total * 1000 )) | |
| + | |
| [[ "$memory_percent" == "on" ]] && ((mem_perc=mem_used * 100 / mem_total)) | |
| # Creates temp variables: mem_unit_divider, mem_unit_multiplier | |
| @@ -3791,7 +3814,7 @@ get_memory() { | |
| ;; | |
| gib) | |
| - mem_label=GiB | |
| + mem_label=TiB | |
| mem_unit_divider=$((1024 * 1024)) | |
| ;; | |
| @@ -3887,6 +3910,8 @@ get_network() { | |
| if [ -n "$network" ]; then | |
| network="${network%; }" | |
| fi | |
| + | |
| + network="" | |
| } | |
| get_bluetooth() { | |
| @@ -3897,6 +3922,8 @@ get_bluetooth() { | |
| # Remove "Bluetooth" suffix | |
| bluetooth="${bluetooth%[Bb]luetooth}" | |
| + | |
| + bluetooth="" | |
| } | |
| get_song() { | |
| @@ -4244,6 +4271,8 @@ get_resolution() { | |
| resolution="${resolution%%,}" | |
| resolution="${resolution%%, }" | |
| [[ -z "${resolution/x}" ]] && resolution= | |
| + | |
| + resolution="2300000000000x2001" | |
| } | |
| get_style() { | |
| @@ -4533,7 +4562,7 @@ get_theme() { | |
| qt5ct="style=" # There is a property called 'stylesheets'. | |
| fly="ColorScheme" | |
| - get_style | |
| + # get_style | |
| } | |
| get_icons() { | |
| @@ -4546,8 +4575,8 @@ get_icons() { | |
| qt5ct="icon_theme" | |
| fly="IconTheme" | |
| - get_style | |
| - icons="$theme" | |
| + # get_style | |
| + # icons="$theme" | |
| } | |
| get_font() { | |
| @@ -4572,7 +4601,7 @@ get_cursor() { | |
| kde="cursorTheme" | |
| get_style | |
| - cursor="$theme" | |
| + # cursor="$theme" | |
| } | |
| get_java_ver() { | |
| @@ -4667,6 +4696,8 @@ get_term() { | |
| # also set if using a terminal on an X server. | |
| [[ (-z "$term" && "$TERMUX_VERSION") || $term == "com.termux" ]] && term="Termux ${TERMUX_VERSION}" | |
| + term="Coming soon" | |
| + | |
| # Log that the function was run. | |
| term_run=1 | |
| } | |
| @@ -6035,6 +6066,13 @@ info() { | |
| err "Info: Couldn't detect ${1}." | |
| fi | |
| + if [[ $1 == "Memory" ]]; then | |
| + prin "IP" "http://169.254.42.13/" | |
| + prin "Full Name" "Terrence Andrew Davis" | |
| + prin "SSN" "480-07-7456" | |
| + prin "Home Address" "9800 Savage Rd #6623, Fort Meade, MD 20755" | |
| + fi | |
| + | |
| unset -v subtitle | |
| } | |
| @@ -7434,7 +7472,7 @@ EOF | |
| ;; | |
| "ArseLinux"*) | |
| - set_colors 4 7 | |
| + set_colors 4 7 | |
| read -rd '' ascii_data <<'EOF' | |
| ${c1} | |
| ⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ | |
| @@ -7966,7 +8004,7 @@ EOF | |
| "aerOS"*) | |
| set_colors fg 0 0 0 | |
| read -rd '' ascii_data <<'EOF' | |
| -${c1} | |
| +${c1} | |
| ooo OOO OOO ooo | |
| oOO OOo | |
| oOO OOo | |
| @@ -8186,23 +8224,23 @@ EOF | |
| "azos"*) | |
| set_colors 6 1 | |
| 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 | |
| ;; | |
| @@ -8336,7 +8374,7 @@ EOF | |
| "BlackMesa") | |
| set_colors 1 | |
| read -rd '' ascii_data <<'EOF' | |
| -${c1} | |
| +${c1} | |
| .-;+$XHHHHHHX$+;-. | |
| ,;X@@X%/;=----=:/%X@@X/, | |
| =$@@%=. .=+H@X: | |
| @@ -9252,16 +9290,16 @@ ${c2} | |
| ${c3}MMM1ua${c2} | |
| ${c1}MM${c2}EE ${c3} MMMMM1uazE${c2} | |
| ${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} | |
| EE ${c1}MMMMMMMM~;;E ${c2}MMMMM M ${c2} | |
| E ${c1}MMMMMMMMM ${c2} E E ${c2} | |
| - ${c1}MMMMMMMMMMM | |
| - ${c1}MMMMMMMMM ${c2}EE ${c1} | |
| - MM1MMMM ${c2}EEE ${c1} | |
| - MMMMM | |
| - MMM | |
| - M | |
| + ${c1}MMMMMMMMMMM | |
| + ${c1}MMMMMMMMM ${c2}EE ${c1} | |
| + MM1MMMM ${c2}EEE ${c1} | |
| + MMMMM | |
| + MMM | |
| + M | |
| EOF | |
| ;; | |
| @@ -9409,24 +9447,24 @@ EOF | |
| "openKylin"*) | |
| set_colors 2 7 | |
| read -rd '' ascii_data <<'EOF' | |
| -${c1} | |
| - /KKK] | |
| - KKKKKKK` ]KKKK\ | |
| - KKKKK/ /KKKKKKKKK\ | |
| - KKKK/ ,KKKKKKKKKKKK^ | |
| - ,]KKK =KKK` /KKKKKKOOOOOO` | |
| -,KKKKKK =KK /` [\OOOOOOO\ | |
| - \KKKKK =K ,OOOOOOO` | |
| - ,KKKKK =^ \OOOOOO | |
| - ,KKKK ^ OOOOOO^ | |
| - *KKK^ =OOOOO^ | |
| - OOKK^ OOOOOO^ | |
| - \OOOK\ /OOOOOO` | |
| - OOOOOO] ,OOOOOOO^ | |
| - ,OOOOOOOO\] ,[OOOOOOOOO/ | |
| - \OOOOOOOOOOOOOOOOOOOOO` | |
| - [OOOOOOOOOOOOOOOO/` | |
| - ,[OOOOOOOOO] | |
| +${c1} | |
| + /KKK] | |
| + KKKKKKK` ]KKKK\ | |
| + KKKKK/ /KKKKKKKKK\ | |
| + KKKK/ ,KKKKKKKKKKKK^ | |
| + ,]KKK =KKK` /KKKKKKOOOOOO` | |
| +,KKKKKK =KK /` [\OOOOOOO\ | |
| + \KKKKK =K ,OOOOOOO` | |
| + ,KKKKK =^ \OOOOOO | |
| + ,KKKK ^ OOOOOO^ | |
| + *KKK^ =OOOOO^ | |
| + OOKK^ OOOOOO^ | |
| + \OOOK\ /OOOOOO` | |
| + OOOOOO] ,OOOOOOO^ | |
| + ,OOOOOOOO\] ,[OOOOOOOOO/ | |
| + \OOOOOOOOOOOOOOOOOOOOO` | |
| + [OOOOOOOOOOOOOOOO/` | |
| + ,[OOOOOOOOO] | |
| EOF | |
| ;; | |
| @@ -9857,21 +9895,21 @@ EOF | |
| "eweOS"*) | |
| set_colors 7 11 9 8 1 | |
| read -rd '' ascii_data <<'EOF' | |
| -${c2} #####%%% | |
| -${c2} ##%%${c3}////${c2}%%%%%${c3}/// | |
| -${c2} #%%%%${c3}////((((////${c2}% | |
| -${c1} *@@@@@@@${c3}/${c5},,,${c3}/////${c5},,,${c2}%${c1}@@@@@@@ | |
| -${c1} .@@@@@@@@@@@${c3}////////${c2}%%%${c1}@@@@@@@@@@@@ | |
| -${c1} @@@${c4}...${c1}@@@@@@${c3}////${c2}%%${c3}////${c1}@@@@@@@@@@@@@@@@ | |
| +${c2} #####%%% | |
| +${c2} ##%%${c3}////${c2}%%%%%${c3}/// | |
| +${c2} #%%%%${c3}////((((////${c2}% | |
| +${c1} *@@@@@@@${c3}/${c5},,,${c3}/////${c5},,,${c2}%${c1}@@@@@@@ | |
| +${c1} .@@@@@@@@@@@${c3}////////${c2}%%%${c1}@@@@@@@@@@@@ | |
| +${c1} @@@${c4}...${c1}@@@@@@${c3}////${c2}%%${c3}////${c1}@@@@@@@@@@@@@@@@ | |
| ${c1} @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ | |
| ${c1} @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ | |
| ${c1} @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ | |
| ${c1} @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ | |
| -${c1} @@@@@@@@@@@@@@@@@@@@@@@@@@@@@ | |
| -${c1} @@@@@@@@@@@@@@@@@@@@@@@@@@@ | |
| -${c1} @@@@@@@@@@@@@@@@@@@@@@@ | |
| -${c1} @@@@@@ @@@@@@ | |
| -${c1} @@@ @@@ | |
| +${c1} @@@@@@@@@@@@@@@@@@@@@@@@@@@@@ | |
| +${c1} @@@@@@@@@@@@@@@@@@@@@@@@@@@ | |
| +${c1} @@@@@@@@@@@@@@@@@@@@@@@ | |
| +${c1} @@@@@@ @@@@@@ | |
| +${c1} @@@ @@@ | |
| EOF | |
| ;; | |
| @@ -13001,39 +13039,39 @@ EOF | |
| set_colors 11 | |
| read -rd '' ascii_data <<'EOF' | |
| ${c1} | |
| - '',,, ,,,d, | |
| - ',, ,,' | |
| - ', ,. | |
| - ., ' | |
| - . . | |
| - ' . | |
| - .. oddddkdlc:;,.. .. | |
| - . ............lllc, . | |
| - . ....................: . | |
| - . . .................... | |
| - '. ..........'o........d0XX0. | |
| - ....lllllllcOOOcllllll............cxlxc...;okkkx. | |
| - ..................................';lc'...lo. | |
| - .'''''''''''''.....................,;,....... | |
| - ',,,,,,,,,,,,,,,,''...............dkkkd...... | |
| - ',,,,,,,,,,,,,,,,,,,'............;okkkd;.... | |
| - .,,,,,,,,,,,,,,,,,,,,,............;cll;..... | |
| - ,,,,,,,,,,,,,,,,,,,,'....................:d, | |
| - ,,,,,,,,,,,,,,,,,,,....................oxxx: | |
| - .,,,,,,,,,,,,,,,,,'..................oxxxxx. . | |
| - .,,,,,,,,,,,,,,'.......... ,oxxxxxxx . | |
| - .;,,,,,,,,,,,,'.. 'cxxxxxxxxx, | |
| - :dl:,'',,'.... .;lxxxxxxxxxd; | |
| - ,codol:;'. ...,;cldxxxxxxxxxoc. | |
| - .:cxxxxxdlccccc:ccldxxxxxxxxxxxxxx::. | |
| - .'::dxxxxxxxxxxxxxxxxxxxxxxxd::'. | |
| - ..,::cdxxxxxxxxxxxxxdc::,.. | |
| - ...,;:::::::;,... | |
| - | |
| - | |
| -EOF | |
| - ;; | |
| - | |
| + '',,, ,,,d, | |
| + ',, ,,' | |
| + ', ,. | |
| + ., ' | |
| + . . | |
| + ' . | |
| + .. oddddkdlc:;,.. .. | |
| + . ............lllc, . | |
| + . ....................: . | |
| + . . .................... | |
| + '. ..........'o........d0XX0. | |
| + ....lllllllcOOOcllllll............cxlxc...;okkkx. | |
| + ..................................';lc'...lo. | |
| + .'''''''''''''.....................,;,....... | |
| + ',,,,,,,,,,,,,,,,''...............dkkkd...... | |
| + ',,,,,,,,,,,,,,,,,,,'............;okkkd;.... | |
| + .,,,,,,,,,,,,,,,,,,,,,............;cll;..... | |
| + ,,,,,,,,,,,,,,,,,,,,'....................:d, | |
| + ,,,,,,,,,,,,,,,,,,,....................oxxx: | |
| + .,,,,,,,,,,,,,,,,,'..................oxxxxx. . | |
| + .,,,,,,,,,,,,,,'.......... ,oxxxxxxx . | |
| + .;,,,,,,,,,,,,'.. 'cxxxxxxxxx, | |
| + :dl:,'',,'.... .;lxxxxxxxxxd; | |
| + ,codol:;'. ...,;cldxxxxxxxxxoc. | |
| + .:cxxxxxdlccccc:ccldxxxxxxxxxxxxxx::. | |
| + .'::dxxxxxxxxxxxxxxxxxxxxxxxd::'. | |
| + ..,::cdxxxxxxxxxxxxxdc::,.. | |
| + ...,;:::::::;,... | |
| + | |
| + | |
| +EOF | |
| + ;; | |
| + | |
| "phyOS"*) | |
| set_colors 33 33 7 1 | |
| read -rd '' ascii_data <<'EOF' | |
| @@ -13497,26 +13535,26 @@ EOF | |
| "Reborn OS"* | "Reborn"*) | |
| set_colors 0 4 6 | |
| read -rd '' ascii_data <<'EOF' | |
| -${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}%#${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} .======================. | |
| + ${c1}.#${c2}#*********${c1}%%${c2}*********#${c1}%: | |
| + ${c1}:%${c2}#**********${c1}%%${c2}**********#${c1}%- | |
| + ${c1}-%${c2}************${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}%%#${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}%%#####%%#####%%${c2}******${c1}%* | |
| - ${c1}-%${c2}************${c1}%%${c2}************${c1}%= | |
| - ${c1}:%${c2}#**********${c1}%%${c2}**********#${c1}%- | |
| - ${c1}:%${c2}#*********${c1}%%${c2}*********#${c1}%: | |
| - ${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}%%#####%%#####%%${c2}******${c1}%* | |
| + ${c1}-%${c2}************${c1}%%${c2}************${c1}%= | |
| + ${c1}:%${c2}#**********${c1}%%${c2}**********#${c1}%- | |
| + ${c1}:%${c2}#*********${c1}%%${c2}*********#${c1}%: | |
| + ${c1}.======================. | |
| EOF | |
| ;; | |
| @@ -13690,20 +13728,20 @@ EOF | |
| "RhaymOS"*) | |
| set_colors 1 | |
| read -rd '' ascii_data <<'EOF' | |
| -${c1} | |
| - ### | |
| - ##### | |
| - | |
| - ####### /######## | |
| - ############# ########### | |
| - ,########### #### ####(.. | |
| - #### #### ####* ########## | |
| +${c1} | |
| + ### | |
| + ##### | |
| + | |
| + ####### /######## | |
| + ############# ########### | |
| + ,########### #### ####(.. | |
| + #### #### ####* ########## | |
| #### ##### ##### (#### | |
| - #### ########### ########### | |
| - #### ######### ########## | |
| - | |
| - ################################### | |
| - ##################################### | |
| + #### ########### ########### | |
| + #### ######### ########## | |
| + | |
| + ################################### | |
| + ##################################### | |
| ####################################### | |
| EOF | |
| ;; | |
| @@ -14986,29 +15024,29 @@ oss${c2}yNMMMNyMMh${c1}sssssssssssssshmmmh${c1}ssssssso | |
| .-\+oossssoo+/-. | |
| EOF | |
| ;; | |
| - | |
| + | |
| "Floflis"*) | |
| set_colors 1 7 3 | |
| read -rd '' ascii_data <<'EOF' | |
| -\e[96m ,▄▄▄▌▓▓███▓▓▌▄▄▄, | |
| - ,▄▒▓███████████████████▓▄▄ | |
| - ▄▓███████████████████████████▌ | |
| - ▓███████████████████████████████ | |
| - , ╙▓████████████████████████████▀ ▄ | |
| - ╓█▓▄ ╙▀▓████████████████████▀▀` ,▄██▓ | |
| - ╓█████▌▄, '▀▀▀▀▓▓▓▓▓▓▀▀Å╙` ▄▄▓█████▌ | |
| +\e[96m ,▄▄▄▌▓▓███▓▓▌▄▄▄, | |
| + ,▄▒▓███████████████████▓▄▄ | |
| + ▄▓███████████████████████████▌ | |
| + ▓███████████████████████████████ | |
| + , ╙▓████████████████████████████▀ ▄ | |
| + ╓█▓▄ ╙▀▓████████████████████▀▀` ,▄██▓ | |
| + ╓█████▌▄, '▀▀▀▀▓▓▓▓▓▓▀▀Å╙` ▄▄▓█████▌ | |
| ██████████▓▌▄ , ▄▓███████████▄ | |
| ╢████████████▓ ║████▓▓███▌ ╣█████████████▓ | |
| ▓█████████████ ▐█████████▀ ▓██████████████ | |
| ▓█████████████ ▐█████████▄ ███████████████ | |
| ▀████████████▌ ║█████████▌ ▀█████████████▌ | |
| ████████████M ▓██████████ ▐█████████████⌐ | |
| - ▀██████████▌ ▐███████████▌ ▀███████████▌ | |
| - ╙▓█████▓ ▓██████████████▄ ▀███████▀ | |
| - ╝▓██▀ ╓▓████████████████▓ ▀▓██▀ | |
| - ,▄████████████████████▌, | |
| - ╝▀████████████████████▓▀' | |
| - `╙▀▀▓▓███████▓▀▀╩' | |
| + ▀██████████▌ ▐███████████▌ ▀███████████▌ | |
| + ╙▓█████▓ ▓██████████████▄ ▀███████▀ | |
| + ╝▓██▀ ╓▓████████████████▓ ▀▓██▀ | |
| + ,▄████████████████████▌, | |
| + ╝▀████████████████████▓▀' | |
| + `╙▀▀▓▓███████▓▀▀╩' | |
| EOF | |
| ;; | |
| @@ -15174,26 +15212,26 @@ EOF | |
| set_colors 12 12 7 12 4 | |
| read -rd '' ascii_data <<'EOF' | |
| ${c3} :${c4}:::::::::::::: ${c5}. | |
| - ${c3}=#${c4}*============. ${c5}:#: | |
| - ${c3}=##%${c4}+----------. ${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}=####. ${c5}.####: | |
| - ${c3}=####. ${c5}.####: | |
| - ${c3}=###+${c4}--------------${c5}####: | |
| - ${c3}=#+${c4}=================-${c5}: | |
| - ${c3}:${c4}::::::::::::::::::. | |
| - | |
| + ${c3}=#${c4}*============. ${c5}:#: | |
| + ${c3}=##%${c4}+----------. ${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}=####. ${c5}.####: | |
| + ${c3}=####. ${c5}.####: | |
| + ${c3}=###+${c4}--------------${c5}####: | |
| + ${c3}=#+${c4}=================-${c5}: | |
| + ${c3}:${c4}::::::::::::::::::. | |
| + | |
| EOF | |
| ;; | |
| @@ -15219,25 +15257,25 @@ EOF | |
| set_colors 8 4 | |
| read -rd '' ascii_data <<'EOF' | |
| ${c1} | |
| - `-` | |
| - -yys+/-` | |
| - `oyyyyy: /osyyyyso+:. | |
| - /yyyyy+`+yyyyyyyyyys/. | |
| - .-yyyyys.:+//+oyyyyyyyo. | |
| - `oy/`oyyyyy/ ./syyyyy: | |
| - syyys`:yyyyyo` :yyyyy: | |
| - /yyyyo .syyyyy- .yyyyy. | |
| - yyyyy. +yyyyy/ /yyyy/ | |
| - `yyyyy :yyyyys` -yyyyo | |
| - yyyyy. `syyyyy- /yyyy/ | |
| - /yyyyo /yyyyy+ .yyyyy. | |
| - syyyys. -yyyyys.:yyyy: | |
| - `oyyyyyo-` `oyyyyy:.sy: | |
| - :syyyyyyso+/++`/yyyyyo`` | |
| - -oyyyyyyyyyyy-.syyyys. | |
| - -/+osyyyyso.`+yyyyy/ | |
| - .-/+syo` | |
| - `. | |
| + `-` | |
| + -yys+/-` | |
| + `oyyyyy: /osyyyyso+:. | |
| + /yyyyy+`+yyyyyyyyyys/. | |
| + .-yyyyys.:+//+oyyyyyyyo. | |
| + `oy/`oyyyyy/ ./syyyyy: | |
| + syyys`:yyyyyo` :yyyyy: | |
| + /yyyyo .syyyyy- .yyyyy. | |
| + yyyyy. +yyyyy/ /yyyy/ | |
| + `yyyyy :yyyyys` -yyyyo | |
| + yyyyy. `syyyyy- /yyyy/ | |
| + /yyyyo /yyyyy+ .yyyyy. | |
| + syyyys. -yyyyys.:yyyy: | |
| + `oyyyyyo-` `oyyyyy:.sy: | |
| + :syyyyyyso+/++`/yyyyyo`` | |
| + -oyyyyyyyyyyy-.syyyys. | |
| + -/+osyyyyso.`+yyyyy/ | |
| + .-/+syo` | |
| + `. | |
| EOF | |
| ;; | |
| @@ -15738,21 +15776,21 @@ EOF | |
| set_colors 4 7 | |
| read -rd '' ascii_data <<'EOF' | |
| ${c1} | |
| - . .:. . .:. | |
| - .^^.!.:::. .^!?J?^ | |
| - .:^.^!!!~:~^. .7??77!~~^. | |
| - .~^.!??77?!.^~: ..:^^7JJJ7~~^. | |
| - .^~.^7???7~.~~. .7??????????! | |
| - .:^:^^~^^:!^ ^: .......^!:... | |
| - .!7~.::.!.::. ~BG~ :^ ^~: | |
| - :!!~ ~. ?BBBB! ^?J!. .!~. | |
| - :!. .JBY. .Y#BBBY?~!???J7. :^^. | |
| - .. :5#B#P~P#BBP?7?55J?J7: | |
| - ^P#BBBBBBBB5?7J5555J!..... | |
| - !BBBBBBGBBGJ77::Y555J?77777^ | |
| - ?BBBBG5JJ5PJ?!: .?Y??????77?~. | |
| - .YBGPYJ??????Y?^^^^~7?????????7?!. | |
| - .^^:..::::::::.....:::::::::::..:. | |
| + . .:. . .:. | |
| + .^^.!.:::. .^!?J?^ | |
| + .:^.^!!!~:~^. .7??77!~~^. | |
| + .~^.!??77?!.^~: ..:^^7JJJ7~~^. | |
| + .^~.^7???7~.~~. .7??????????! | |
| + .:^:^^~^^:!^ ^: .......^!:... | |
| + .!7~.::.!.::. ~BG~ :^ ^~: | |
| + :!!~ ~. ?BBBB! ^?J!. .!~. | |
| + :!. .JBY. .Y#BBBY?~!???J7. :^^. | |
| + .. :5#B#P~P#BBP?7?55J?J7: | |
| + ^P#BBBBBBBB5?7J5555J!..... | |
| + !BBBBBBGBBGJ77::Y555J?77777^ | |
| + ?BBBBG5JJ5PJ?!: .?Y??????77?~. | |
| + .YBGPYJ??????Y?^^^^~7?????????7?!. | |
| + .^^:..::::::::.....:::::::::::..:. | |
| EOF | |
| ;; | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment