From 944968cf69aa8a93b78d9c278237b6e1ca4b402b Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Fri, 20 Apr 2018 08:13:01 +1000 Subject: [PATCH 01/25] wm: Added WM version. --- config/config.conf | 11 +++++++++++ neofetch | 11 +++++++++++ neofetch.1 | 3 +++ 3 files changed, 25 insertions(+) diff --git a/config/config.conf b/config/config.conf index d754e023..65d01d49 100644 --- a/config/config.conf +++ b/config/config.conf @@ -303,6 +303,17 @@ gtk3="on" public_ip_host="http://ident.me" +# Window Manager + + +# Show Window Manager Version. +# +# Default: 'off' +# Values: 'on', off +# Flag: --wm_version +wm_version="off" + + # Disk diff --git a/neofetch b/neofetch index c54e99d5..dc7a01ad 100755 --- a/neofetch +++ b/neofetch @@ -792,6 +792,15 @@ get_wm() { -e "monsterwm" \ -e "tinywm")" + if [[ "$wm_version" == "on" ]]; then + wmv="$wm $("${wm,,}" --version || "${wm,,}" -v)" + wmv="${wmv/$wm $wm/$wm}" + wmv="${wmv/copyright*}" + wmv="${wmv/version }" + wmv="${wmv/©*}" + wmv="${wmv/(c)*}" + wm="$wmv" + fi else case "$os" in "Mac OS X") @@ -4699,6 +4708,7 @@ INFO: NOTE: This only supports Linux. + --wm_version on/off Show/Hide Window Manager version. --gtk_shorthand on/off Shorten output of gtk theme/icons --gtk2 on/off Enable/Disable gtk2 theme/font/icons output --gtk3 on/off Enable/Disable gtk3 theme/font/icons output @@ -4869,6 +4879,7 @@ get_args() { "--cpu_brand") cpu_brand="$2" ;; "--gpu_brand") gpu_brand="$2" ;; "--gpu_type") gpu_type="$2" ;; + "--wm_version") wm_version="$2" ;; "--refresh_rate") refresh_rate="$2" ;; "--gtk_shorthand") gtk_shorthand="$2" ;; "--gtk2") gtk2="$2" ;; diff --git a/neofetch.1 b/neofetch.1 index d43db1d8..391cb7d6 100644 --- a/neofetch.1 +++ b/neofetch.1 @@ -81,6 +81,9 @@ Which GPU to display. (all, dedicated, integrated) .IP NOTE: This only supports Linux. .TP +\fB\-\-wm_version\fR on/off +Show/Hide Window Manager version. +.TP \fB\-\-gtk_shorthand\fR on/off Shorten output of gtk theme/icons .TP From 7dbb157a8085d655b9826ef255f2407bbc4b83b7 Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Tue, 1 May 2018 19:25:19 +1000 Subject: [PATCH 02/25] wm: Show version for KDE and dwm. --- neofetch | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/neofetch b/neofetch index dc7a01ad..d35fe625 100755 --- a/neofetch +++ b/neofetch @@ -793,8 +793,12 @@ get_wm() { -e "tinywm")" if [[ "$wm_version" == "on" ]]; then - wmv="$wm $("${wm,,}" --version || "${wm,,}" -v)" + wmv="$wm $("${wm,,}" --version || \ + "${wm,,}" -v || \ + "${wm,,}_x11" -v)" || \ + "${wm,,}_wayland" -v")" wmv="${wmv/$wm $wm/$wm}" + wmv="${wmv/$wm $wm-/$wm}" wmv="${wmv/copyright*}" wmv="${wmv/version }" wmv="${wmv/©*}" From ed237bfcbc801ee513f47318beb1a26d25dec1c0 Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Tue, 1 May 2018 19:30:18 +1000 Subject: [PATCH 03/25] wm: Added support for aewm --- neofetch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neofetch b/neofetch index d35fe625..7284307f 100755 --- a/neofetch +++ b/neofetch @@ -798,7 +798,7 @@ get_wm() { "${wm,,}_x11" -v)" || \ "${wm,,}_wayland" -v")" wmv="${wmv/$wm $wm/$wm}" - wmv="${wmv/$wm $wm-/$wm}" + wmv="${wmv/$wm ${wm}?/$wm}" wmv="${wmv/copyright*}" wmv="${wmv/version }" wmv="${wmv/©*}" From 2bb8a30a4918dc64e6f73345d196b631c0cf8325 Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Tue, 1 May 2018 19:41:44 +1000 Subject: [PATCH 04/25] wm: Added support for more window managers. --- neofetch | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/neofetch b/neofetch index 7284307f..4749c3cc 100755 --- a/neofetch +++ b/neofetch @@ -792,17 +792,16 @@ get_wm() { -e "monsterwm" \ -e "tinywm")" - if [[ "$wm_version" == "on" ]]; then - wmv="$wm $("${wm,,}" --version || \ - "${wm,,}" -v || \ - "${wm,,}_x11" -v)" || \ - "${wm,,}_wayland" -v")" + if [[ "$wm_version" == "on" && "$wm" ]]; then + wmv="$("${wm,,}" --version || "${wm,,}" -v 2>&1)" + wmv="$wm ${wmv:-$("${wm,,}_x11" -v || "${wm,,}_wayland" -v)}" + wmv="${wmv/$wm ${wm}?/$wm }" wmv="${wmv/$wm $wm/$wm}" - wmv="${wmv/$wm ${wm}?/$wm}" wmv="${wmv/copyright*}" wmv="${wmv/version }" wmv="${wmv/©*}" wmv="${wmv/(c)*}" + wmv="${wmv/ : }" wm="$wmv" fi else From 70b1fe169cdc341865a2a597a669d8cfd35c3e6c Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Thu, 3 May 2018 14:05:49 +1000 Subject: [PATCH 05/25] config: Inline config file. --- config/config.conf | 782 ------------------------------------------- neofetch | 814 +++++++++++++++++++++++++++++++++++++++++++-- 2 files changed, 790 insertions(+), 806 deletions(-) delete mode 100644 config/config.conf diff --git a/config/config.conf b/config/config.conf deleted file mode 100644 index 65d01d49..00000000 --- a/config/config.conf +++ /dev/null @@ -1,782 +0,0 @@ -# Neofetch config file -# https://github.com/dylanaraps/neofetch - - -# See this wiki page for more info: -# https://github.com/dylanaraps/neofetch/wiki/Customizing-Info -print_info() { - info title - info underline - - info "OS" distro - info "Host" model - info "Kernel" kernel - info "Uptime" uptime - info "Packages" packages - info "Shell" shell - info "Resolution" resolution - info "DE" de - info "WM" wm - info "WM Theme" wm_theme - info "Theme" theme - info "Icons" icons - info "Terminal" term - info "Terminal Font" term_font - info "CPU" cpu - info "GPU" gpu - info "Memory" memory - - # info "GPU Driver" gpu_driver # Linux/macOS only - # info "CPU Usage" cpu_usage - # info "Disk" disk - # info "Battery" battery - # info "Font" font - # info "Song" song - # info "Local IP" local_ip - # info "Public IP" public_ip - # info "Users" users - # info "Install Date" install_date - # info "Locale" locale # This only works on glibc systems. - - info line_break - info cols - info line_break -} - - -# Kernel - - -# Shorten the output of the kernel function. -# -# Default: 'on' -# Values: 'on', 'off' -# Flag: --kernel_shorthand -# Supports: Everything except *BSDs (except PacBSD and PC-BSD) -# -# Example: -# on: '4.8.9-1-ARCH' -# off: 'Linux 4.8.9-1-ARCH' -kernel_shorthand="on" - - -# Distro - - -# Shorten the output of the distro function -# -# Default: 'off' -# Values: 'on', 'off', 'tiny' -# Flag: --distro_shorthand -# Supports: Everything except Windows and Haiku -distro_shorthand="off" - -# Show/Hide OS Architecture. -# Show 'x86_64', 'x86' and etc in 'Distro:' output. -# -# Default: 'on' -# Values: 'on', 'off' -# Flag: --os_arch -# -# Example: -# on: 'Arch Linux x86_64' -# off: 'Arch Linux' -os_arch="on" - - -# Uptime - - -# Shorten the output of the uptime function -# -# Default: 'on' -# Values: 'on', 'off', 'tiny' -# Flag: --uptime_shorthand -# -# Example: -# on: '2 days, 10 hours, 3 mins' -# off: '2 days, 10 hours, 3 minutes' -# tiny: '2d 10h 3m' -uptime_shorthand="on" - - -# Shell - - -# Show the path to $SHELL -# -# Default: 'off' -# Values: 'on', 'off' -# Flag: --shell_path -# -# Example: -# on: '/bin/bash' -# off: 'bash' -shell_path="off" - -# Show $SHELL version -# -# Default: 'on' -# Values: 'on', 'off' -# Flag: --shell_version -# -# Example: -# on: 'bash 4.4.5' -# off: 'bash' -shell_version="on" - - -# CPU - - -# CPU speed type -# -# Default: 'bios_limit' -# Values: 'scaling_cur_freq', 'scaling_min_freq', 'scaling_max_freq', 'bios_limit'. -# Flag: --speed_type -# Supports: Linux with 'cpufreq' -# NOTE: Any file in '/sys/devices/system/cpu/cpu0/cpufreq' can be used as a value. -speed_type="bios_limit" - -# CPU speed shorthand -# -# Default: 'off' -# Values: 'on', 'off'. -# Flag: --speed_shorthand. -# NOTE: This flag is not supported in systems with CPU speed less than 1 GHz -# -# Example: -# on: 'i7-6500U (4) @ 3.1GHz' -# off: 'i7-6500U (4) @ 3.100GHz' -speed_shorthand="off" - -# Enable/Disable CPU brand in output. -# -# Default: 'on' -# Values: 'on', 'off' -# Flag: --cpu_brand -# -# Example: -# on: 'Intel i7-6500U' -# off: 'i7-6500U (4)' -cpu_brand="on" - -# CPU Speed -# Hide/Show CPU speed. -# -# Default: 'on' -# Values: 'on', 'off' -# Flag: --cpu_speed -# -# Example: -# on: 'Intel i7-6500U (4) @ 3.1GHz' -# off: 'Intel i7-6500U (4)' -cpu_speed="on" - -# CPU Cores -# Display CPU cores in output -# -# Default: 'logical' -# Values: 'logical', 'physical', 'off' -# Flag: --cpu_cores -# Support: 'physical' doesn't work on BSD. -# -# Example: -# logical: 'Intel i7-6500U (4) @ 3.1GHz' (All virtual cores) -# physical: 'Intel i7-6500U (2) @ 3.1GHz' (All physical cores) -# off: 'Intel i7-6500U @ 3.1GHz' -cpu_cores="logical" - -# CPU Temperature -# Hide/Show CPU temperature. -# Note the temperature is added to the regular CPU function. -# -# Default: 'off' -# Values: 'C', 'F', 'off' -# Flag: --cpu_temp -# Supports: Linux, BSD -# NOTE: For FreeBSD and NetBSD-based systems, you'll need to enable -# coretemp kernel module. This only supports newer Intel processors. -# -# Example: -# C: 'Intel i7-6500U (4) @ 3.1GHz [27.2°C]' -# F: 'Intel i7-6500U (4) @ 3.1GHz [82.0°F]' -# off: 'Intel i7-6500U (4) @ 3.1GHz' -cpu_temp="off" - - -# GPU - - -# Enable/Disable GPU Brand -# -# Default: 'on' -# Values: 'on', 'off' -# Flag: --gpu_brand -# -# Example: -# on: 'AMD HD 7950' -# off: 'HD 7950' -gpu_brand="on" - -# Which GPU to display -# -# Default: 'all' -# Values: 'all', 'dedicated', 'integrated' -# Flag: --gpu_type -# Supports: Linux -# -# Example: -# all: -# GPU1: AMD HD 7950 -# GPU2: Intel Integrated Graphics -# -# dedicated: -# GPU1: AMD HD 7950 -# -# integrated: -# GPU1: Intel Integrated Graphics -gpu_type="all" - - -# Resolution - - -# Display refresh rate next to each monitor -# Default: 'off' -# Values: 'on', 'off' -# Flag: --refresh_rate -# Supports: Doesn't work on Windows. -# -# Example: -# on: '1920x1080 @ 60Hz' -# off: '1920x1080' -refresh_rate="off" - - -# Gtk Theme / Icons / Font - - -# Shorten output of GTK Theme / Icons / Font -# -# Default: 'off' -# Values: 'on', 'off' -# Flag: --gtk_shorthand -# -# Example: -# on: 'Numix, Adwaita' -# off: 'Numix [GTK2], Adwaita [GTK3]' -gtk_shorthand="off" - - -# Enable/Disable gtk2 Theme / Icons / Font -# -# Default: 'on' -# Values: 'on', 'off' -# Flag: --gtk2 -# -# Example: -# on: 'Numix [GTK2], Adwaita [GTK3]' -# off: 'Adwaita [GTK3]' -gtk2="on" - -# Enable/Disable gtk3 Theme / Icons / Font -# -# Default: 'on' -# Values: 'on', 'off' -# Flag: --gtk3 -# -# Example: -# on: 'Numix [GTK2], Adwaita [GTK3]' -# off: 'Numix [GTK2]' -gtk3="on" - - -# IP Address - - -# Website to ping for the public IP -# -# Default: 'http://ident.me' -# Values: 'url' -# Flag: --ip_host -public_ip_host="http://ident.me" - - -# Window Manager - - -# Show Window Manager Version. -# -# Default: 'off' -# Values: 'on', off -# Flag: --wm_version -wm_version="off" - - -# Disk - - -# Which disks to display. -# The values can be any /dev/sdXX, mount point or directory. -# NOTE: By default we only show the disk info for '/'. -# -# Default: '/' -# Values: '/', '/dev/sdXX', '/path/to/drive'. -# Flag: --disk_show -# -# Example: -# disk_show=('/' '/dev/sdb1'): -# 'Disk (/): 74G / 118G (66%)' -# 'Disk (/mnt/Videos): 823G / 893G (93%)' -# -# disk_show=('/'): -# 'Disk (/): 74G / 118G (66%)' -# -disk_show=('/') - -# Disk subtitle. -# What to append to the Disk subtitle. -# -# Default: 'mount' -# Values: 'mount', 'name', 'dir' -# Flag: --disk_subtitle -# -# Example: -# name: 'Disk (/dev/sda1): 74G / 118G (66%)' -# 'Disk (/dev/sdb2): 74G / 118G (66%)' -# -# mount: 'Disk (/): 74G / 118G (66%)' -# 'Disk (/mnt/Local Disk): 74G / 118G (66%)' -# 'Disk (/mnt/Videos): 74G / 118G (66%)' -# -# dir: 'Disk (/): 74G / 118G (66%)' -# 'Disk (Local Disk): 74G / 118G (66%)' -# 'Disk (Videos): 74G / 118G (66%)' -disk_subtitle="mount" - - -# Song - - -# Manually specify a music player. -# -# Default: 'auto' -# Values: 'auto', 'player-name' -# Flag: --music_player -# -# Available values for 'player-name': -# -# Google Play -# Spotify -# amarok -# audacious -# banshee -# bluemindo -# clementine -# cmus -# deadbeef -# deepin-music -# elisa -# exaile -# gnome-music -# guayadeque -# iTunes$ -# juk -# lollypop -# mocp -# mopidy -# mpd -# pogo -# pragha -# qmmp -# quodlibet -# rhythmbox -# spotify -# tomahawk -# xmms2d -# yarock -music_player="auto" - -# Print the Artist and Title on separate lines -# -# Default: 'off' -# Values: 'on', 'off' -# Flag: --song_shorthand -# -# Example: -# on: 'Artist: The Fratellis' -# 'Song: Chelsea Dagger' -# -# off: 'Song: The Fratellis - Chelsea Dagger' -song_shorthand="off" - - -# Install Date - - -# Whether to show the time in the output -# -# Default: 'on' -# Values: 'on', 'off' -# Flag: --install_time -# -# Example: -# on: 'Thu 14 Apr 2016 11:50 PM' -# off: 'Thu 14 Apr 2016' -install_time="on" - -# Set time format in the output -# -# Default: '24h' -# Values: '12h', '24h' -# Flag: --install_time_format -# -# Example: -# 12h: 'Thu 14 Apr 2016 11:50 PM' -# 24h: 'Thu 14 Apr 2016 23:50' -install_time_format="12h" - - -# Text Colors - - -# Text Colors -# -# Default: 'distro' -# Values: 'distro', 'num' 'num' 'num' 'num' 'num' 'num' -# Flag: --colors -# -# Each number represents a different part of the text in -# this order: 'title', '@', 'underline', 'subtitle', 'colon', 'info' -# -# Example: -# colors=(distro) - Text is colored based on Distro colors. -# colors=(4 6 1 8 8 6) - Text is colored in the order above. -colors=(distro) - - -# Text Options - - -# Toggle bold text -# -# Default: 'on' -# Values: 'on', 'off' -# Flag: --bold -bold="on" - -# Enable/Disable Underline -# -# Default: 'on' -# Values: 'on', 'off' -# Flag: --underline -underline_enabled="on" - -# Underline character -# -# Default: '-' -# Values: 'string' -# Flag: --underline_char -underline_char="-" - - -# Color Blocks - - -# Color block range -# The range of colors to print. -# -# Default: '0', '7' -# Values: 'num' -# Flag: --block_range -# -# Example: -# -# Display colors 0-7 in the blocks. (8 colors) -# neofetch --block_range 0 7 -# -# Display colors 0-15 in the blocks. (16 colors) -# neofetch --block_range 0 15 -block_range=(0 7) - -# Toggle color blocks -# -# Default: 'on' -# Values: 'on', 'off' -# Flag: --color_blocks -color_blocks="on" - -# Color block width in spaces -# -# Default: '3' -# Values: 'num' -# Flag: --block_width -block_width=3 - -# Color block height in lines -# -# Default: '1' -# Values: 'num' -# Flag: --block_height -block_height=1 - - -# Progress Bars - - -# Bar characters -# -# Default: '-', '=' -# Values: 'string', 'string' -# Flag: --bar_char -# -# Example: -# neofetch --bar_char 'elapsed' 'total' -# neofetch --bar_char '-' '=' -bar_char_elapsed="-" -bar_char_total="=" - -# Toggle Bar border -# -# Default: 'on' -# Values: 'on', 'off' -# Flag: --bar_border -bar_border="on" - -# Progress bar length in spaces -# Number of chars long to make the progress bars. -# -# Default: '15' -# Values: 'num' -# Flag: --bar_length -bar_length=15 - -# Progress bar colors -# When set to distro, uses your distro's logo colors. -# -# Default: 'distro', 'distro' -# Values: 'distro', 'num' -# Flag: --bar_colors -# -# Example: -# neofetch --bar_colors 3 4 -# neofetch --bar_colors distro 5 -bar_color_elapsed="distro" -bar_color_total="distro" - - -# Info display -# Display a bar with the info. -# -# Default: 'off' -# Values: 'bar', 'infobar', 'barinfo', 'off' -# Flags: --cpu_display -# --memory_display -# --battery_display -# --disk_display -# -# Example: -# bar: '[---=======]' -# infobar: 'info [---=======]' -# barinfo: '[---=======] info' -# off: 'info' -cpu_display="off" -memory_display="off" -battery_display="off" -disk_display="off" - - -# Backend Settings - - -# Image backend. -# -# Default: 'ascii' -# Values: 'ascii', 'caca', 'catimg', 'jp2a', 'iterm2', 'off', 'termpix', 'pixterm', 'tycat', 'w3m' -# Flag: --backend -image_backend="ascii" - -# Image Source -# -# Which image or ascii file to display. -# -# Default: 'auto' -# Values: 'auto', 'ascii', 'wallpaper', '/path/to/img', '/path/to/ascii', '/path/to/dir/' -# Flag: --source -# -# NOTE: 'auto' will pick the best image source for whatever image backend is used. -# In ascii mode, distro ascii art will be used and in an image mode, your -# wallpaper will be used. -image_source="auto" - - -# Ascii Options - - -# Ascii distro -# Which distro's ascii art to display. -# -# Default: 'auto' -# Values: 'auto', 'distro_name' -# Flag: --ascii_distro -# -# NOTE: Arch and Ubuntu have 'old' logo variants. -# Change this to 'arch_old' or 'ubuntu_old' to use the old logos. -# NOTE: Ubuntu has flavor variants. -# Change this to 'Lubuntu', 'Xubuntu', 'Ubuntu-GNOME' or 'Ubuntu-Budgie' to use the flavors. -# NOTE: Arch, Crux and Gentoo have a smaller logo variant. -# Change this to 'arch_small', 'crux_small' or 'gentoo_small' to use the small logos. -ascii_distro="auto" - -# Ascii Colors -# -# Default: 'distro' -# Values: 'distro', 'num' 'num' 'num' 'num' 'num' 'num' -# Flag: --ascii_colors -# -# Example: -# ascii_colors=(distro) - Ascii is colored based on Distro colors. -# ascii_colors=(4 6 1 8 8 6) - Ascii is colored using these colors. -ascii_colors=(distro) - -# Bold ascii logo -# Whether or not to bold the ascii logo. -# -# Default: 'on' -# Values: 'on', 'off' -# Flag: --ascii_bold -ascii_bold="on" - - -# Image Options - - -# Image loop -# Setting this to on will make neofetch redraw the image constantly until -# Ctrl+C is pressed. This fixes display issues in some terminal emulators. -# -# Default: 'off' -# Values: 'on', 'off' -# Flag: --loop -image_loop="off" - -# Thumbnail directory -# -# Default: '~/.cache/thumbnails/neofetch' -# Values: 'dir' -thumbnail_dir="${XDG_CACHE_HOME:-${HOME}/.cache}/thumbnails/neofetch" - -# Crop mode -# -# Default: 'normal' -# Values: 'normal', 'fit', 'fill' -# Flag: --crop_mode -# -# See this wiki page to learn about the fit and fill options. -# https://github.com/dylanaraps/neofetch/wiki/What-is-Waifu-Crop%3F -crop_mode="normal" - -# Crop offset -# Note: Only affects 'normal' crop mode. -# -# Default: 'center' -# Values: 'northwest', 'north', 'northeast', 'west', 'center' -# 'east', 'southwest', 'south', 'southeast' -# Flag: --crop_offset -crop_offset="center" - -# Image size -# The image is half the terminal width by default. -# -# Default: 'auto' -# Values: 'auto', '00px', '00%', 'none' -# Flags: --image_size -# --size -image_size="auto" - -# Gap between image and text -# -# Default: '3' -# Values: 'num', '-num' -# Flag: --gap -gap=3 - -# Image offsets -# Only works with the w3m backend. -# -# Default: '0' -# Values: 'px' -# Flags: --xoffset -# --yoffset -yoffset=0 -xoffset=0 - -# Image background color -# Only works with the w3m backend. -# -# Default: '' -# Values: 'color', 'blue' -# Flag: --bg_color -background_color= - - -# Scrot Options - - -# Whether or not to always take a screenshot -# You can manually take a screenshot with "--scrot" or "-s" -# -# Default: 'off' -# Values: 'on', 'off' -# Flags: --scrot -# -s -scrot="off" - -# Screenshot Program -# Neofetch will automatically use whatever screenshot tool -# is installed on your system. -# -# If 'neofetch -v' says that it couldn't find a screenshot -# tool or you're using a custom tool then you can change -# the option below to a custom command. -# -# Default: 'auto' -# Values: 'auto' 'cmd -flags' -# Flag: --scrot_cmd -scrot_cmd="auto" - -# Screenshot Filename -# What to name the screenshots -# -# Default: 'neofetch-$(date +%F-%I-%M-%S-${RANDOM}).png' -# Values: 'string' -# Flag: --scrot_name -scrot_name="neofetch-$(date +%F-%I-%M-%S-${RANDOM}).png" - -# Image upload host -# Where to upload the image. -# -# Default: 'teknik' -# Values: 'imgur', 'teknik' -# Flag: --image_host -# -# NOTE: If you'd like another image host to be added to Neofetch. -# Open an issue on github. -image_host="teknik" - - -# Misc Options - -# Stdout mode -# Turn off all colors and disables image backend (ASCII/Image). -# Useful for piping into another command. -# Default: 'off' -# Values: 'on', 'off' -stdout="off" - -# Config version. -# -# NOTE: Don't change this value, neofetch reads this to determine -# how to handle backwards compatibility. -config_version="3.4.1-git" diff --git a/neofetch b/neofetch index 4749c3cc..30328a8b 100755 --- a/neofetch +++ b/neofetch @@ -31,6 +31,789 @@ shopt -s nocasematch # Reset colors and bold. reset="\e[0m" +# Neofetch default config. +readarray -t config <<'EOM' +# See this wiki page for more info: +# https://github.com/dylanaraps/neofetch/wiki/Customizing-Info +print_info() { + info title + info underline + + info "OS" distro + info "Host" model + info "Kernel" kernel + info "Uptime" uptime + info "Packages" packages + info "Shell" shell + info "Resolution" resolution + info "DE" de + info "WM" wm + info "WM Theme" wm_theme + info "Theme" theme + info "Icons" icons + info "Terminal" term + info "Terminal Font" term_font + info "CPU" cpu + info "GPU" gpu + info "Memory" memory + + # info "GPU Driver" gpu_driver # Linux/macOS only + # info "CPU Usage" cpu_usage + # info "Disk" disk + # info "Battery" battery + # info "Font" font + # info "Song" song + # info "Local IP" local_ip + # info "Public IP" public_ip + # info "Users" users + # info "Install Date" install_date + # info "Locale" locale # This only works on glibc systems. + + info line_break + info cols + info line_break +} + + +# Kernel + + +# Shorten the output of the kernel function. +# +# Default: 'on' +# Values: 'on', 'off' +# Flag: --kernel_shorthand +# Supports: Everything except *BSDs (except PacBSD and PC-BSD) +# +# Example: +# on: '4.8.9-1-ARCH' +# off: 'Linux 4.8.9-1-ARCH' +kernel_shorthand="on" + + +# Distro + + +# Shorten the output of the distro function +# +# Default: 'off' +# Values: 'on', 'off', 'tiny' +# Flag: --distro_shorthand +# Supports: Everything except Windows and Haiku +distro_shorthand="off" + +# Show/Hide OS Architecture. +# Show 'x86_64', 'x86' and etc in 'Distro:' output. +# +# Default: 'on' +# Values: 'on', 'off' +# Flag: --os_arch +# +# Example: +# on: 'Arch Linux x86_64' +# off: 'Arch Linux' +os_arch="on" + + +# Uptime + + +# Shorten the output of the uptime function +# +# Default: 'on' +# Values: 'on', 'off', 'tiny' +# Flag: --uptime_shorthand +# +# Example: +# on: '2 days, 10 hours, 3 mins' +# off: '2 days, 10 hours, 3 minutes' +# tiny: '2d 10h 3m' +uptime_shorthand="on" + + +# Shell + + +# Show the path to $SHELL +# +# Default: 'off' +# Values: 'on', 'off' +# Flag: --shell_path +# +# Example: +# on: '/bin/bash' +# off: 'bash' +shell_path="off" + +# Show $SHELL version +# +# Default: 'on' +# Values: 'on', 'off' +# Flag: --shell_version +# +# Example: +# on: 'bash 4.4.5' +# off: 'bash' +shell_version="on" + + +# CPU + + +# CPU speed type +# +# Default: 'bios_limit' +# Values: 'scaling_cur_freq', 'scaling_min_freq', 'scaling_max_freq', 'bios_limit'. +# Flag: --speed_type +# Supports: Linux with 'cpufreq' +# NOTE: Any file in '/sys/devices/system/cpu/cpu0/cpufreq' can be used as a value. +speed_type="bios_limit" + +# CPU speed shorthand +# +# Default: 'off' +# Values: 'on', 'off'. +# Flag: --speed_shorthand. +# NOTE: This flag is not supported in systems with CPU speed less than 1 GHz +# +# Example: +# on: 'i7-6500U (4) @ 3.1GHz' +# off: 'i7-6500U (4) @ 3.100GHz' +speed_shorthand="off" + +# Enable/Disable CPU brand in output. +# +# Default: 'on' +# Values: 'on', 'off' +# Flag: --cpu_brand +# +# Example: +# on: 'Intel i7-6500U' +# off: 'i7-6500U (4)' +cpu_brand="on" + +# CPU Speed +# Hide/Show CPU speed. +# +# Default: 'on' +# Values: 'on', 'off' +# Flag: --cpu_speed +# +# Example: +# on: 'Intel i7-6500U (4) @ 3.1GHz' +# off: 'Intel i7-6500U (4)' +cpu_speed="on" + +# CPU Cores +# Display CPU cores in output +# +# Default: 'logical' +# Values: 'logical', 'physical', 'off' +# Flag: --cpu_cores +# Support: 'physical' doesn't work on BSD. +# +# Example: +# logical: 'Intel i7-6500U (4) @ 3.1GHz' (All virtual cores) +# physical: 'Intel i7-6500U (2) @ 3.1GHz' (All physical cores) +# off: 'Intel i7-6500U @ 3.1GHz' +cpu_cores="logical" + +# CPU Temperature +# Hide/Show CPU temperature. +# Note the temperature is added to the regular CPU function. +# +# Default: 'off' +# Values: 'C', 'F', 'off' +# Flag: --cpu_temp +# Supports: Linux, BSD +# NOTE: For FreeBSD and NetBSD-based systems, you'll need to enable +# coretemp kernel module. This only supports newer Intel processors. +# +# Example: +# C: 'Intel i7-6500U (4) @ 3.1GHz [27.2°C]' +# F: 'Intel i7-6500U (4) @ 3.1GHz [82.0°F]' +# off: 'Intel i7-6500U (4) @ 3.1GHz' +cpu_temp="off" + + +# GPU + + +# Enable/Disable GPU Brand +# +# Default: 'on' +# Values: 'on', 'off' +# Flag: --gpu_brand +# +# Example: +# on: 'AMD HD 7950' +# off: 'HD 7950' +gpu_brand="on" + +# Which GPU to display +# +# Default: 'all' +# Values: 'all', 'dedicated', 'integrated' +# Flag: --gpu_type +# Supports: Linux +# +# Example: +# all: +# GPU1: AMD HD 7950 +# GPU2: Intel Integrated Graphics +# +# dedicated: +# GPU1: AMD HD 7950 +# +# integrated: +# GPU1: Intel Integrated Graphics +gpu_type="all" + + +# Resolution + + +# Display refresh rate next to each monitor +# Default: 'off' +# Values: 'on', 'off' +# Flag: --refresh_rate +# Supports: Doesn't work on Windows. +# +# Example: +# on: '1920x1080 @ 60Hz' +# off: '1920x1080' +refresh_rate="off" + + +# Gtk Theme / Icons / Font + + +# Shorten output of GTK Theme / Icons / Font +# +# Default: 'off' +# Values: 'on', 'off' +# Flag: --gtk_shorthand +# +# Example: +# on: 'Numix, Adwaita' +# off: 'Numix [GTK2], Adwaita [GTK3]' +gtk_shorthand="off" + + +# Enable/Disable gtk2 Theme / Icons / Font +# +# Default: 'on' +# Values: 'on', 'off' +# Flag: --gtk2 +# +# Example: +# on: 'Numix [GTK2], Adwaita [GTK3]' +# off: 'Adwaita [GTK3]' +gtk2="on" + +# Enable/Disable gtk3 Theme / Icons / Font +# +# Default: 'on' +# Values: 'on', 'off' +# Flag: --gtk3 +# +# Example: +# on: 'Numix [GTK2], Adwaita [GTK3]' +# off: 'Numix [GTK2]' +gtk3="on" + + +# IP Address + + +# Website to ping for the public IP +# +# Default: 'http://ident.me' +# Values: 'url' +# Flag: --ip_host +public_ip_host="http://ident.me" + + +# Window Manager + + +# Show Window Manager Version. +# +# Default: 'off' +# Values: 'on', off +# Flag: --wm_version +wm_version="off" + + +# Disk + + +# Which disks to display. +# The values can be any /dev/sdXX, mount point or directory. +# NOTE: By default we only show the disk info for '/'. +# +# Default: '/' +# Values: '/', '/dev/sdXX', '/path/to/drive'. +# Flag: --disk_show +# +# Example: +# disk_show=('/' '/dev/sdb1'): +# 'Disk (/): 74G / 118G (66%)' +# 'Disk (/mnt/Videos): 823G / 893G (93%)' +# +# disk_show=('/'): +# 'Disk (/): 74G / 118G (66%)' +# +disk_show=('/') + +# Disk subtitle. +# What to append to the Disk subtitle. +# +# Default: 'mount' +# Values: 'mount', 'name', 'dir' +# Flag: --disk_subtitle +# +# Example: +# name: 'Disk (/dev/sda1): 74G / 118G (66%)' +# 'Disk (/dev/sdb2): 74G / 118G (66%)' +# +# mount: 'Disk (/): 74G / 118G (66%)' +# 'Disk (/mnt/Local Disk): 74G / 118G (66%)' +# 'Disk (/mnt/Videos): 74G / 118G (66%)' +# +# dir: 'Disk (/): 74G / 118G (66%)' +# 'Disk (Local Disk): 74G / 118G (66%)' +# 'Disk (Videos): 74G / 118G (66%)' +disk_subtitle="mount" + + +# Song + + +# Manually specify a music player. +# +# Default: 'auto' +# Values: 'auto', 'player-name' +# Flag: --music_player +# +# Available values for 'player-name': +# +# Google Play +# Spotify +# amarok +# audacious +# banshee +# bluemindo +# clementine +# cmus +# deadbeef +# deepin-music +# elisa +# exaile +# gnome-music +# guayadeque +# iTunes$ +# juk +# lollypop +# mocp +# mopidy +# mpd +# pogo +# pragha +# qmmp +# quodlibet +# rhythmbox +# spotify +# tomahawk +# xmms2d +# yarock +music_player="auto" + +# Print the Artist and Title on separate lines +# +# Default: 'off' +# Values: 'on', 'off' +# Flag: --song_shorthand +# +# Example: +# on: 'Artist: The Fratellis' +# 'Song: Chelsea Dagger' +# +# off: 'Song: The Fratellis - Chelsea Dagger' +song_shorthand="off" + + +# Install Date + + +# Whether to show the time in the output +# +# Default: 'on' +# Values: 'on', 'off' +# Flag: --install_time +# +# Example: +# on: 'Thu 14 Apr 2016 11:50 PM' +# off: 'Thu 14 Apr 2016' +install_time="on" + +# Set time format in the output +# +# Default: '24h' +# Values: '12h', '24h' +# Flag: --install_time_format +# +# Example: +# 12h: 'Thu 14 Apr 2016 11:50 PM' +# 24h: 'Thu 14 Apr 2016 23:50' +install_time_format="12h" + + +# Text Colors + + +# Text Colors +# +# Default: 'distro' +# Values: 'distro', 'num' 'num' 'num' 'num' 'num' 'num' +# Flag: --colors +# +# Each number represents a different part of the text in +# this order: 'title', '@', 'underline', 'subtitle', 'colon', 'info' +# +# Example: +# colors=(distro) - Text is colored based on Distro colors. +# colors=(4 6 1 8 8 6) - Text is colored in the order above. +colors=(distro) + + +# Text Options + + +# Toggle bold text +# +# Default: 'on' +# Values: 'on', 'off' +# Flag: --bold +bold="on" + +# Enable/Disable Underline +# +# Default: 'on' +# Values: 'on', 'off' +# Flag: --underline +underline_enabled="on" + +# Underline character +# +# Default: '-' +# Values: 'string' +# Flag: --underline_char +underline_char="-" + + +# Color Blocks + + +# Color block range +# The range of colors to print. +# +# Default: '0', '7' +# Values: 'num' +# Flag: --block_range +# +# Example: +# +# Display colors 0-7 in the blocks. (8 colors) +# neofetch --block_range 0 7 +# +# Display colors 0-15 in the blocks. (16 colors) +# neofetch --block_range 0 15 +block_range=(0 7) + +# Toggle color blocks +# +# Default: 'on' +# Values: 'on', 'off' +# Flag: --color_blocks +color_blocks="on" + +# Color block width in spaces +# +# Default: '3' +# Values: 'num' +# Flag: --block_width +block_width=3 + +# Color block height in lines +# +# Default: '1' +# Values: 'num' +# Flag: --block_height +block_height=1 + + +# Progress Bars + + +# Bar characters +# +# Default: '-', '=' +# Values: 'string', 'string' +# Flag: --bar_char +# +# Example: +# neofetch --bar_char 'elapsed' 'total' +# neofetch --bar_char '-' '=' +bar_char_elapsed="-" +bar_char_total="=" + +# Toggle Bar border +# +# Default: 'on' +# Values: 'on', 'off' +# Flag: --bar_border +bar_border="on" + +# Progress bar length in spaces +# Number of chars long to make the progress bars. +# +# Default: '15' +# Values: 'num' +# Flag: --bar_length +bar_length=15 + +# Progress bar colors +# When set to distro, uses your distro's logo colors. +# +# Default: 'distro', 'distro' +# Values: 'distro', 'num' +# Flag: --bar_colors +# +# Example: +# neofetch --bar_colors 3 4 +# neofetch --bar_colors distro 5 +bar_color_elapsed="distro" +bar_color_total="distro" + + +# Info display +# Display a bar with the info. +# +# Default: 'off' +# Values: 'bar', 'infobar', 'barinfo', 'off' +# Flags: --cpu_display +# --memory_display +# --battery_display +# --disk_display +# +# Example: +# bar: '[---=======]' +# infobar: 'info [---=======]' +# barinfo: '[---=======] info' +# off: 'info' +cpu_display="off" +memory_display="off" +battery_display="off" +disk_display="off" + + +# Backend Settings + + +# Image backend. +# +# Default: 'ascii' +# Values: 'ascii', 'caca', 'catimg', 'jp2a', 'iterm2', 'off', 'termpix', 'pixterm', 'tycat', 'w3m' +# Flag: --backend +image_backend="ascii" + +# Image Source +# +# Which image or ascii file to display. +# +# Default: 'auto' +# Values: 'auto', 'ascii', 'wallpaper', '/path/to/img', '/path/to/ascii', '/path/to/dir/' +# Flag: --source +# +# NOTE: 'auto' will pick the best image source for whatever image backend is used. +# In ascii mode, distro ascii art will be used and in an image mode, your +# wallpaper will be used. +image_source="auto" + + +# Ascii Options + + +# Ascii distro +# Which distro's ascii art to display. +# +# Default: 'auto' +# Values: 'auto', 'distro_name' +# Flag: --ascii_distro +# +# NOTE: Arch and Ubuntu have 'old' logo variants. +# Change this to 'arch_old' or 'ubuntu_old' to use the old logos. +# NOTE: Ubuntu has flavor variants. +# Change this to 'Lubuntu', 'Xubuntu', 'Ubuntu-GNOME' or 'Ubuntu-Budgie' to use the flavors. +# NOTE: Arch, Crux and Gentoo have a smaller logo variant. +# Change this to 'arch_small', 'crux_small' or 'gentoo_small' to use the small logos. +ascii_distro="auto" + +# Ascii Colors +# +# Default: 'distro' +# Values: 'distro', 'num' 'num' 'num' 'num' 'num' 'num' +# Flag: --ascii_colors +# +# Example: +# ascii_colors=(distro) - Ascii is colored based on Distro colors. +# ascii_colors=(4 6 1 8 8 6) - Ascii is colored using these colors. +ascii_colors=(distro) + +# Bold ascii logo +# Whether or not to bold the ascii logo. +# +# Default: 'on' +# Values: 'on', 'off' +# Flag: --ascii_bold +ascii_bold="on" + + +# Image Options + + +# Image loop +# Setting this to on will make neofetch redraw the image constantly until +# Ctrl+C is pressed. This fixes display issues in some terminal emulators. +# +# Default: 'off' +# Values: 'on', 'off' +# Flag: --loop +image_loop="off" + +# Thumbnail directory +# +# Default: '~/.cache/thumbnails/neofetch' +# Values: 'dir' +thumbnail_dir="${XDG_CACHE_HOME:-${HOME}/.cache}/thumbnails/neofetch" + +# Crop mode +# +# Default: 'normal' +# Values: 'normal', 'fit', 'fill' +# Flag: --crop_mode +# +# See this wiki page to learn about the fit and fill options. +# https://github.com/dylanaraps/neofetch/wiki/What-is-Waifu-Crop%3F +crop_mode="normal" + +# Crop offset +# Note: Only affects 'normal' crop mode. +# +# Default: 'center' +# Values: 'northwest', 'north', 'northeast', 'west', 'center' +# 'east', 'southwest', 'south', 'southeast' +# Flag: --crop_offset +crop_offset="center" + +# Image size +# The image is half the terminal width by default. +# +# Default: 'auto' +# Values: 'auto', '00px', '00%', 'none' +# Flags: --image_size +# --size +image_size="auto" + +# Gap between image and text +# +# Default: '3' +# Values: 'num', '-num' +# Flag: --gap +gap=3 + +# Image offsets +# Only works with the w3m backend. +# +# Default: '0' +# Values: 'px' +# Flags: --xoffset +# --yoffset +yoffset=0 +xoffset=0 + +# Image background color +# Only works with the w3m backend. +# +# Default: '' +# Values: 'color', 'blue' +# Flag: --bg_color +background_color= + + +# Scrot Options + + +# Whether or not to always take a screenshot +# You can manually take a screenshot with "--scrot" or "-s" +# +# Default: 'off' +# Values: 'on', 'off' +# Flags: --scrot +# -s +scrot="off" + +# Screenshot Program +# Neofetch will automatically use whatever screenshot tool +# is installed on your system. +# +# If 'neofetch -v' says that it couldn't find a screenshot +# tool or you're using a custom tool then you can change +# the option below to a custom command. +# +# Default: 'auto' +# Values: 'auto' 'cmd -flags' +# Flag: --scrot_cmd +scrot_cmd="auto" + +# Screenshot Filename +# What to name the screenshots +# +# Default: 'neofetch-$(date +%F-%I-%M-%S-${RANDOM}).png' +# Values: 'string' +# Flag: --scrot_name +scrot_name="neofetch-$(date +%F-%I-%M-%S-${RANDOM}).png" + +# Image upload host +# Where to upload the image. +# +# Default: 'teknik' +# Values: 'imgur', 'teknik' +# Flag: --image_host +# +# NOTE: If you'd like another image host to be added to Neofetch. +# Open an issue on github. +image_host="teknik" + + +# Misc Options + +# Stdout mode +# Turn off all colors and disables image backend (ASCII/Image). +# Useful for piping into another command. +# Default: 'off' +# Values: 'on', 'off' +stdout="off" + +# Config version. +# +# NOTE: Don't change this value, neofetch reads this to determine +# how to handle backwards compatibility. +config_version="3.4.1-git" +EOM + + # DETECT INFORMATION get_os() { @@ -4290,22 +5073,6 @@ get_full_path() { [[ -e "$full_dir" ]] && printf "%s\n" "$full_dir" } -get_default_config() { - if [[ -f "CONFDIR/config.conf" ]]; then - default_config="CONFDIR/config.conf" - - else - [[ -z "$script_dir" ]] && script_dir="$(get_full_path "$0")" - default_config="${script_dir%/*}/config/config.conf" - fi - - if source "$default_config"; then - err "Config: Sourced default config. (${default_config})" - else - err "Config: Default config not found, continuing..." - fi -} - get_user_config() { # Check $config_file. if [[ -f "$config_file" ]]; then @@ -4324,15 +5091,11 @@ get_user_config() { elif [[ -f "${XDG_CONFIG_HOME}/neofetch/config.conf" ]]; then config_file="${XDG_CONFIG_HOME}/neofetch/config.conf" - elif [[ -f "CONFDIR/config.conf" ]]; then - cp "CONFDIR/config.conf" "${XDG_CONFIG_HOME}/neofetch" - config_file="${XDG_CONFIG_HOME}/neofetch/config.conf" - else - [[ -z "$script_dir" ]] && script_dir="$(get_full_path "$0")" - - cp "${script_dir%/*}/config/config.conf" "${XDG_CONFIG_HOME}/neofetch" config_file="${XDG_CONFIG_HOME}/neofetch/config.conf" + + # The config file doesn't exist, create it. + printf "%s\n" "${config[@]}" > "$config_file" fi source "$config_file" @@ -5060,7 +5823,10 @@ get_args() { main() { cache_uname get_os - get_default_config + + # Load default config. + source /dev/stdin < <(printf "%s\\n" "${config[@]}") + get_args "$@" [[ "$verbose" != "on" ]] && exec 2>/dev/null get_distro From 836ab52e6a44b7c9b77e1562370faa46124afaaa Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Thu, 3 May 2018 14:09:58 +1000 Subject: [PATCH 06/25] general: Removed changes from other branch --- neofetch | 24 ------------------------ 1 file changed, 24 deletions(-) diff --git a/neofetch b/neofetch index 30328a8b..36ff242c 100755 --- a/neofetch +++ b/neofetch @@ -334,16 +334,6 @@ gtk3="on" public_ip_host="http://ident.me" -# Window Manager - - -# Show Window Manager Version. -# -# Default: 'off' -# Values: 'on', off -# Flag: --wm_version -wm_version="off" - # Disk @@ -1575,18 +1565,6 @@ get_wm() { -e "monsterwm" \ -e "tinywm")" - if [[ "$wm_version" == "on" && "$wm" ]]; then - wmv="$("${wm,,}" --version || "${wm,,}" -v 2>&1)" - wmv="$wm ${wmv:-$("${wm,,}_x11" -v || "${wm,,}_wayland" -v)}" - wmv="${wmv/$wm ${wm}?/$wm }" - wmv="${wmv/$wm $wm/$wm}" - wmv="${wmv/copyright*}" - wmv="${wmv/version }" - wmv="${wmv/©*}" - wmv="${wmv/(c)*}" - wmv="${wmv/ : }" - wm="$wmv" - fi else case "$os" in "Mac OS X") @@ -5474,7 +5452,6 @@ INFO: NOTE: This only supports Linux. - --wm_version on/off Show/Hide Window Manager version. --gtk_shorthand on/off Shorten output of gtk theme/icons --gtk2 on/off Enable/Disable gtk2 theme/font/icons output --gtk3 on/off Enable/Disable gtk3 theme/font/icons output @@ -5645,7 +5622,6 @@ get_args() { "--cpu_brand") cpu_brand="$2" ;; "--gpu_brand") gpu_brand="$2" ;; "--gpu_type") gpu_type="$2" ;; - "--wm_version") wm_version="$2" ;; "--refresh_rate") refresh_rate="$2" ;; "--gtk_shorthand") gtk_shorthand="$2" ;; "--gtk2") gtk2="$2" ;; From 00c9c0e3d8e420e315e2fbb6503918bc2019d1db Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Thu, 3 May 2018 14:10:50 +1000 Subject: [PATCH 07/25] docs: update --- neofetch.1 | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/neofetch.1 b/neofetch.1 index 391cb7d6..b0bcd8ac 100644 --- a/neofetch.1 +++ b/neofetch.1 @@ -1,5 +1,5 @@ .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.6. -.TH NEOFETCH "1" "April 2018" "Neofetch 3.4.1-git" "User Commands" +.TH NEOFETCH "1" "May 2018" "Neofetch 3.4.1-git" "User Commands" .SH NAME Neofetch \- A fast, highly customizable system info script .SH SYNOPSIS @@ -81,9 +81,6 @@ Which GPU to display. (all, dedicated, integrated) .IP NOTE: This only supports Linux. .TP -\fB\-\-wm_version\fR on/off -Show/Hide Window Manager version. -.TP \fB\-\-gtk_shorthand\fR on/off Shorten output of gtk theme/icons .TP From 28fe414fb6e65b1956cb2bb1e1824730f0d48722 Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Thu, 3 May 2018 14:32:59 +1000 Subject: [PATCH 08/25] general: Start inlining ascii. --- neofetch | 1023 +++++++++++++++++++++++++++++++++++++++++++++--------- 1 file changed, 861 insertions(+), 162 deletions(-) diff --git a/neofetch b/neofetch index 36ff242c..07b053bd 100755 --- a/neofetch +++ b/neofetch @@ -3450,19 +3450,6 @@ get_ascii() { # Fallback to distro ascii mode if source is an image. [[ "$image_source" =~ \.(png|jpg|jpe|jpeg|gif)$ ]] && \ err "Image: Source is image file but ascii backend was selected. Using distro ascii." - - if [[ -d "ASCIIDIR" ]]; then - ascii_dir="ASCIIDIR" - else - [[ -z "$script_dir" ]] && script_dir="$(get_full_path "$0")" - ascii_dir="${script_dir%/*}/ascii/distro" - fi - - image_source="${ascii_dir}/${ascii_file}" - - # Fallback to no ascii mode if distro ascii isn't found. - [[ ! -f "$image_source" ]] && \ - { to_off "Ascii: Failed to find distro ascii, falling back to no ascii mode."; return; } fi # Set locale to get correct padding. @@ -3480,7 +3467,7 @@ get_ascii() { line="${line//\\\\/\\}" ((${#line} > ascii_length)) && ascii_length="${#line}" ((++lines)) - done < "$image_source" + done <<< "$ascii_data" # Colors. print="${print//'${c1}'/$c1}" @@ -4159,745 +4146,1457 @@ get_distro_colors() { case "$ascii_distro" in "AIX"*) set_colors 2 7 - ascii_file="aix" + read -rd '' ascii_data <<'EOF' +${c1} `:+ssssossossss+-` + .oys///oyhddddhyo///sy+. + /yo:+hNNNNNNNNNNNNNNNNh+:oy/ + :h/:yNNNNNNNNNNNNNNNNNNNNNNy-+h: + `ys.yNNNNNNNNNNNNNNNNNNNNNNNNNNy.ys + `h+-mNNNNNNNNNNNNNNNNNNNNNNNNNNNNm-oh + h+-NNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNN.oy +/d`mNNNNNNN/::mNNNd::m+:/dNNNo::dNNNd`m: +h//NNNNNNN: . .NNNh mNo od. -dNNNNN:+y +N.sNNNNNN+ -N/ -NNh mNNd. sNNNNNNNo-m +N.sNNNNNs +oo /Nh mNNs` ` /mNNNNNNo-m +h//NNNNh ossss` +h md- .hm/ `sNNNNN:+y +:d`mNNN+/yNNNNNd//y//h//oNNNNy//sNNNd`m- + yo-NNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNm.ss + `h+-mNNNNNNNNNNNNNNNNNNNNNNNNNNNNm-oy + sy.yNNNNNNNNNNNNNNNNNNNNNNNNNNs.yo + :h+-yNNNNNNNNNNNNNNNNNNNNNNs-oh- + :ys:/yNNNNNNNNNNNNNNNmy/:sy: + .+ys///osyhhhhys+///sy+. + -/osssossossso/- +EOF ;; "alpine_small") set_colors 4 7 - ascii_file="alpine_small" + read -rd '' ascii_data <<'EOF' +${c1} /\\ /\\ + /${c2}/ ${c1}\\ \\ + /${c2}/ ${c1}\\ \\ +/${c2}// ${c1}\\ \\ +${c2}// ${c1}\\ \\ + \\ +EOF ;; "Alpine"*) set_colors 4 5 7 6 - ascii_file="alpine" + read -rd '' ascii_data <<'EOF' +${c1} .hddddddddddddddddddddddh. + :dddddddddddddddddddddddddd: + /dddddddddddddddddddddddddddd/ + +dddddddddddddddddddddddddddddd+ + `sdddddddddddddddddddddddddddddddds` + `ydddddddddddd++hdddddddddddddddddddy` +.hddddddddddd+` `+ddddh:-sdddddddddddh. +hdddddddddd+` `+y: .sddddddddddh +ddddddddh+` `//` `.` -sddddddddd +ddddddh+` `/hddh/` `:s- -sddddddd +ddddh+` `/+/dddddh/` `+s- -sddddd +ddd+` `/o` :dddddddh/` `oy- .yddd +hdddyo+ohddyosdddddddddho+oydddy++ohdddh +.hddddddddddddddddddddddddddddddddddddh. + `yddddddddddddddddddddddddddddddddddy` + `sdddddddddddddddddddddddddddddddds` + +dddddddddddddddddddddddddddddd+ + /dddddddddddddddddddddddddddd/ + :dddddddddddddddddddddddddd: + .hddddddddddddddddddddddh. +EOF ;; "Amazon"*) set_colors 3 7 - ascii_file="amazon" + read -rd '' ascii_data <<'EOF' +${c1} `-/oydNNdyo:.` + `.:+shmMMMMMMMMMMMMMMmhs+:.` + -+hNNMMMMMMMMMMMMMMMMMMMMMMNNho- +.`` -/+shmNNMMMMMMNNmhs+/- ``. +dNmhs+:. `.:/oo/:.` .:+shmNd +dMMMMMMMNdhs+:.. ..:+shdNMMMMMMMd +dMMMMMMMMMMMMMMNds odNMMMMMMMMMMMMMMd +dMMMMMMMMMMMMMMMMh yMMMMMMMMMMMMMMMMd +dMMMMMMMMMMMMMMMMh yMMMMMMMMMMMMMMMMd +dMMMMMMMMMMMMMMMMh yMMMMMMMMMMMMMMMMd +dMMMMMMMMMMMMMMMMh yMMMMMMMMMMMMMMMMd +dMMMMMMMMMMMMMMMMh yMMMMMMMMMMMMMMMMd +dMMMMMMMMMMMMMMMMh yMMMMMMMMMMMMMMMMd +dMMMMMMMMMMMMMMMMh yMMMMMMMMMMMMMMMMd +dMMMMMMMMMMMMMMMMh yMMMMMMMMMMMMMMMMd +dMMMMMMMMMMMMMMMMh yMMMMMMMMMMMMMMMMd +.:+ydNMMMMMMMMMMMh yMMMMMMMMMMMNdy+:. + `.:+shNMMMMMh yMMMMMNhs+:`` + `-+shy shs+:` +EOF ;; "Anarchy"*) set_colors 7 4 - ascii_file="anarchy" + read -rd '' ascii_data <<'EOF' + ${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}+++++${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} +EOF ;; "Android"*) set_colors 2 7 - ascii_file="android" ascii_length_force=19 + read -rd '' ascii_data <<'EOF' +${c1} ╲ ▁▂▂▂▁ ╱ + ▄███████▄ + ▄██${c2} ${c1}███${c2} ${c1}██▄ + ▄███████████▄ +▄█ ▄▄▄▄▄▄▄▄▄▄▄▄▄ █▄ +██ █████████████ ██ +██ █████████████ ██ +██ █████████████ ██ +██ █████████████ ██ + █████████████ + ███████████ + ██ ██ + ██ ██ +EOF ;; "Antergos"*) set_colors 4 6 - ascii_file="antergos" + read -rd '' ascii_data <<'EOF' +${c2} `.-/::/-`` + .-/osssssssso/. + :osyysssssssyyys+- + `.+yyyysssssssssyyyyy+. + `/syyyyyssssssssssyyyyys-` + `/yhyyyyysss${c1}++${c2}ssosyyyyhhy/` + .ohhhyyyys${c1}o++/+o${c2}so${c1}+${c2}syy${c1}+${c2}shhhho. + .shhhhys${c1}oo++//+${c2}sss${c1}+++${c2}yyy${c1}+s${c2}hhhhs. + -yhhhhs${c1}+++++++o${c2}ssso${c1}+++${c2}yyy${c1}s+o${c2}hhddy: + -yddhhy${c1}o+++++o${c2}syyss${c1}++++${c2}yyy${c1}yooy${c2}hdddy- + .yddddhs${c1}o++o${c2}syyyyys${c1}+++++${c2}yyhh${c1}sos${c2}hddddy` +`odddddhyosyhyyyyyy${c1}++++++${c2}yhhhyosddddddo +.dmdddddhhhhhhhyyyo${c1}+++++${c2}shhhhhohddddmmh. +ddmmdddddhhhhhhhso${c1}++++++${c2}yhhhhhhdddddmmdy +dmmmdddddddhhhyso${c1}++++++${c2}shhhhhddddddmmmmh +-dmmmdddddddhhys${c1}o++++o${c2}shhhhdddddddmmmmd- +.smmmmddddddddhhhhhhhhhdddddddddmmmms. + `+ydmmmdddddddddddddddddddmmmmdy/. + `.:+ooyyddddddddddddyyso+:.` +EOF ;; "antiX"*) set_colors 1 7 3 - ascii_file="antix" + read -rd '' ascii_data <<'EOF' +${c1} + \ + , - ~ ^ ~ - \ / + , ' \ ' , / + , \ '/ + , \ / , + ,___, \/ , + / | _ _ _|_ o /\ , +|, | / |/ | | | / \ , + \,_/\_/ | |_/|_/|_/_/ \, + , / ,\ + , / , ' \ + ' - , _ _ _ , ' +EOF ;; "AOSC"*) set_colors 4 7 1 - ascii_file="aosc" + read -rd '' ascii_data <<'EOF' +${c2} .:+syhhhhys+:. + .ohNMMMMMMMMMMMMMMNho. + `+mMMMMMMMMMMmdmNMMMMMMMMm+` + +NMMMMMMMMMMMM/ `./smMMMMMN+ + .mMMMMMMMMMMMMMMo -yMMMMMm. + :NMMMMMMMMMMMMMMMs .hMMMMN: + .NMMMMhmMMMMMMMMMMm+/- oMMMMN. + dMMMMs ./ymMMMMMMMMMMNy. sMMMMd +-MMMMN` oMMMMMMMMMMMN: `NMMMM- +/MMMMh NMMMMMMMMMMMMm hMMMM/ +/MMMMh NMMMMMMMMMMMMm hMMMM/ +-MMMMN` :MMMMMMMMMMMMy. `NMMMM- + dMMMMs .yNMMMMMMMMMMMNy/. sMMMMd + .NMMMMo -/+sMMMMMMMMMMMmMMMMN. + :NMMMMh. .MMMMMMMMMMMMMMMN: + .mMMMMMy- NMMMMMMMMMMMMMm. + +NMMMMMms/.` mMMMMMMMMMMMN+ + `+mMMMMMMMMNmddMMMMMMMMMMm+` + .ohNMMMMMMMMMMMMMMNho. + .:+syhhhhys+:. +EOF ;; "Apricity"*) set_colors 4 7 1 - ascii_file="apricity" + read -rd '' ascii_data <<'EOF' +${c2} ./o- + ``...`` `:. -/: + `-+ymNMMMMMNmho-` :sdNNm/ + `+dMMMMMMMMMMMMMMMmo` sh:.:::- + /mMMMMMMMMMMMMMMMMMMMm/`sNd/ + oMMMMMMMMMMMMMMMMMMMMMMMs -` +:MMMMMMMMMMMMMMMMMMMMMMMMM/ +NMMMMMMMMMMMMMMMMMMMMMMMMMd +MMMMMMMmdmMMMMMMMMMMMMMMMMd +MMMMMMy` .mMMMMMMMMMMMmho:` +MMMMMMNo/sMMMMMMMNdy+-.`-/ +MMMMMMMMMMMMNdy+:.`.:ohmm: +MMMMMMMmhs+-.`.:+ymNMMMy. +MMMMMM/`.-/ohmNMMMMMMy- +MMMMMMNmNNMMMMMMMMmo. +MMMMMMMMMMMMMMMms:` +MMMMMMMMMMNds/. +dhhyys+/-` +EOF ;; "arch_small") set_colors 6 7 1 - ascii_file="arch_small" + read -rd '' ascii_data <<'EOF' +${c1} /\ + /^^\ + /\ \ + /${c2} __ \ + / ( ) \ + / __| |__\\\ +/// \\\\\ +EOF ;; "arch_old") set_colors 6 7 1 - ascii_file="arch_old" + read -rd '' ascii_data <<'EOF' +${c1} __ + _=(SDGJT=_ + _GTDJHGGFCVS) + ,GTDJGGDTDFBGX0 +${c1} JDJDIJHRORVFSBSVL${c2}-=+=,_ +${c1} IJFDUFHJNXIXCDXDSV,${c2} "DEBL +${c1} [LKDSDJTDU=OUSCSBFLD.${c2} '?ZWX, +${c1} ,LMDSDSWH' `DCBOSI${c2} DRDS], +${c1} SDDFDFH' !YEWD,${c2} )HDROD +${c1} !KMDOCG &GSU|${c2}\_GFHRGO\' +${c1} HKLSGP'${c2} __${c1}\TKM0${c2}\GHRBV)' +${c1}JSNRVW'${c2} __+MNAEC${c1}\IOI,${c2}\BN' +${c1}HELK['${c2} __,=OFFXCBGHC${c1}\FD) +${c1}?KGHE ${c2}\_-#DASDFLSV='${c1} 'EF +'EHTI !H + `0F' '! +EOF ;; "ArchBox"*) set_colors 2 7 1 - ascii_file="archbox" + read -rd '' ascii_data <<'EOF' +${c1} ...:+oh/:::.. + ..-/oshhhhhh` `::::-. + .:/ohhhhhhhhhhhh` `-::::. + .+shhhhhhhhhhhhhhhhh` `.::-. + /`-:+shhhhhhhhhhhhhh` .-/+shh + / .:/ohhhhhhhhh` .:/ohhhhhhhh + / `-:+shhh` ..:+shhhhhhhhhhhh + / .:ohhhhhhhhhhhhhhhhhhh + / `hhhhhhhhhhhhhhhhhhhh + / `hhhhhhhhhhhhhhhhhhhh + / `hhhhhhhhhhhhhhhhhhhh + / `hhhhhhhhhhhhhhhhhhhh + / .+o+ `hhhhhhhhhhhhhhhhhhhh + / -hhhhh `hhhhhhhhhhhhhhhhhhhh + / ohhhhho `hhhhhhhhhhhhhhhhhhhh + /:::+`hhhhoos` `hhhhhhhhhhhhhhhhhs+` + `--/:` /: `hhhhhhhhhhhho/- + -/:. `hhhhhhs+:-` + ::::/ho/-` +EOF ;; "ARCHlabs"*) set_colors 6 6 7 1 - ascii_file="archlabs" + read -rd '' ascii_data <<'EOF' +${c1} 'c' + 'kKk, + .dKKKx. + .oKXKXKd. + .l0XXXXKKo. + c0KXXXXKX0l. + :0XKKOxxOKX0l. + :OXKOc. .c0XX0l. + :OK0o. ${c4}...${c1}'dKKX0l. + :OX0c ${c4};xOx'${c1}'dKXX0l. + :0KKo.${c4}.o0XXKd'.${c1}lKXX0l. + c0XKd.${c4}.oKXXXXKd..${c1}oKKX0l. + .c0XKk;${c4}.l0K0OO0XKd..${c1}oKXXKo. + .l0XXXk:${c4},dKx,.'l0XKo.${c1}.kXXXKo. + .o0XXXX0d,${c4}:x; .oKKx'${c1}.dXKXXKd. + .oKXXXXKK0c.${c4};. :00c'${c1}cOXXXXXKd. + .dKXXXXXXXXk,${c4}. cKx'${c1}'xKXXXXXXKx' + 'xKXXXXK0kdl:. ${c4}.ok; ${c1}.cdk0KKXXXKx' + 'xKK0koc,.. ${c4}'c, ${c1} ..,cok0KKk, + ,xko:'. ${c4}.. ${c1} .':okx; + .,'. .',. +EOF ;; *"XFerience"*) set_colors 6 6 7 1 - ascii_file="arch_xferience" + read -rd '' ascii_data <<'EOF' +${c1} ``--:::::::-.` + .-/+++ooooooooo+++:-` + `-/+oooooooooooooooooo++:. + -/+oooooo/+ooooooooo+/ooo++:` + `/+oo++oo. .+oooooo+.-: +:-o+- + `/+o/. -o. :oooooo+ ```:.+oo+- +`:+oo- -/` :oooooo+ .`-`+oooo/. +.+ooo+. .` `://///+-+..oooooo+:` +-+ooo:` ``.-+oooooo+/` +-+oo/` :+oooo/. +.+oo: ..-/. . -+oo+/` +`/++- -:::++::/. -+oo+- + ./o: `:///+- `./ooo+:` + .++- `` /-` -:/+oooo+:` + .:+/:`` `-:ooooooo++- + ./+o+//:...../+oooooooo++:` + `:/++ooooooooooooo++/-` + `.-//++++++//:-.` + `````` +EOF ;; "ArchMerge"*) set_colors 6 6 7 1 - ascii_file="archmerge" + read -rd '' ascii_data <<'EOF' +${c1} y: + sMN- + +MMMm` + /MMMMMd` + :NMMMMMMy + -NMMMMMMMMs + .NMMMMMMMMMM+ + .mMMMMMMMMMMMM+ + oNMMMMMMMMMMMMM+ + `+:-+NMMMMMMMMMMMM+ + .sNMNhNMMMMMMMMMMMM/ + `hho/sNMMMMMMMMMMMMMMM/ + `.`omMMmMMMMMMMMMMMMMMMM+ + .mMNdshMMMMd+::oNMMMMMMMMMo + .mMMMMMMMMM+ `yMMMMMMMMMs + .NMMMMMMMMM/ yMMMMMMMMMy + -NMMMMMMMMMh `mNMMMMMMMMd` + /NMMMNds+:.` `-/oymMMMm. + +Mmy/. `:smN: +/+. -o. +EOF ;; "Arch"*) set_colors 6 6 7 1 - ascii_file="arch" + read -rd '' ascii_data <<'EOF' +${c1} -` + .o+` + `ooo/ + `+oooo: + `+oooooo: + -+oooooo+: + `/:-:++oooo+: + `/++++/+++++++: + `/++++++++++++++: + `/+++o${c2}oooooooo${c1}oooo/` +${c2} ${c1}./${c2}ooosssso++osssssso${c1}+` +${c2} .oossssso-````/ossssss+` + -osssssso. :ssssssso. + :osssssss/ osssso+++. + /ossssssss/ +ssssooo/- + `/ossssso+/:- -:/+osssso+- + `+sso+:-` `.-/+oso: + `++:. `-/+/ + .` `/ +EOF ;; "Artix"*) set_colors 6 4 2 7 - ascii_file="artix" + read -rd '' ascii_data <<'EOF' +${c1} d${c2}c. +${c1} x${c2}dc. +${c1} '.${c4}.${c1} d${c2}dlc. +${c1} c${c2}0d:${c1}o${c2}xllc; +${c1} :${c2}0ddlolc,lc, +${c1} :${c1}ko${c4}.${c1}:${c2}0ddollc..dlc. +${c1} ;${c1}K${c2}kxoOddollc' cllc. +${c1} ,${c1}K${c2}kkkxdddllc, ${c4}.${c2}lll: +${c1} ,${c1}X${c2}kkkddddlll;${c3}...';${c1}d${c2}llll${c3}dxk: +${c1} ,${c1}X${c2}kkkddddllll${c3}oxxxddo${c2}lll${c3}oooo, +${c3} xxk${c1}0${c2}kkkdddd${c1}o${c2}lll${c1}o${c3}ooooooolooooc;${c1}. +${c3} ddd${c2}kkk${c1}d${c2}ddd${c1}ol${c2}lc:${c3}:;,'.${c3}... .${c2}lll; +${c1} .${c3}xd${c1}x${c2}kk${c1}xd${c2}dl${c1}'cl:${c4}. ${c2}.llc, +${c1} .${c1}0${c2}kkkxddl${c4}. ${c2};'${c4}. ${c2};llc. +${c1} .${c1}K${c2}Okdcddl${c4}. ${c2}cllc${c4}. +${c1} 0${c2}Okd''dc. .cll; +${c1} k${c2}Okd' .llc, +${c1} d${c2}Od, 'lc. +${c1} :,${c4}. ${c2}... +EOF ;; "Arya"*) set_colors 2 1 - ascii_file="arya" + read -rd '' ascii_data <<'EOF' +${c1} `oyyy/${c2}-yyyyyy+ +${c1} -syyyy/${c2}-yyyyyy+ +${c1} .syyyyy/${c2}-yyyyyy+ +${c1} :yyyyyy/${c2}-yyyyyy+ +${c1} `/ :yyyyyy/${c2}-yyyyyy+ +${c1} .+s :yyyyyy/${c2}-yyyyyy+ +${c1} .oys :yyyyyy/${c2}-yyyyyy+ +${c1} -oyys :yyyyyy/${c2}-yyyyyy+ +${c1} :syyys :yyyyyy/${c2}-yyyyyy+ +${c1} /syyyys :yyyyyy/${c2}-yyyyyy+ +${c1} +yyyyyys :yyyyyy/${c2}-yyyyyy+ +${c1} .oyyyyyyo. :yyyyyy/${c2}-yyyyyy+ --------- +${c1} .syyyyyy+` :yyyyyy/${c2}-yyyyy+-+syyyyyyyy +${c1} -syyyyyy/ :yyyyyy/${c2}-yyys:.syyyyyyyyyy +${c1}:syyyyyy/ :yyyyyy/${c2}-yyo.:syyyyyyyyyyy +EOF ;; "Bitrig"*) set_colors 2 7 - ascii_file="bitrig" + read -rd '' ascii_data <<'EOF' +${c1} `hMMMMN+ + -MMo-dMd` + oMN- oMN` + yMd /NM: + .mMmyyhMMs + :NMMMhsmMh + +MNhNNoyMm- + hMd.-hMNMN: + mMmsssmMMMo + .MMdyyhNMMMd + oMN.`/dMddMN` + yMm/hNm+./MM/ +.dMMMmo.``.NMo +:NMMMNmmmmmMMh +/MN/-------oNN: +hMd. .dMh +sm/ /ms +EOF ;; "BLAG"*) set_colors 5 7 - ascii_file="blag" + read -rd '' ascii_data <<'EOF' +${c1} d + ,MK: + xMMMX: + .NMMMMMX; + lMMMMMMMM0clodkO0KXWW: + KMMMMMMMMMMMMMMMMMMX' + .;d0NMMMMMMMMMMMMMMMMMMK. + .;dONMMMMMMMMMMMMMMMMMMMMMMx +'dKMMMMMMMMMMMMMMMMMMMMMMMMl + .:xKWMMMMMMMMMMMMMMMMMMM0. + .:xNMMMMMMMMMMMMMMMMMK. + lMMMMMMMMMMMMMMMMMMK. + ,MMMMMMMMWkOXWMMMMMM0 + .NMMMMMNd. `':ldko + OMMMK: + oWk, + ;: +EOF ;; "BlankOn"*) set_colors 1 7 3 - ascii_file="blankon" + read -rd '' ascii_data <<'EOF' +${c2} `./ohdNMMMMNmho+.` ${c1} .+oo:` +${c2} -smMMMMMMMMMMMMMMMMmy-` ${c1}`yyyyy+ +${c2} `:dMMMMMMMMMMMMMMMMMMMMMMd/` ${c1}`yyyyys +${c2} .hMMMMMMMNmhso/++symNMMMMMMMh- ${c1}`yyyyys +${c2} -mMMMMMMms-` -omMMMMMMN-${c1}.yyyyys +${c2}.mMMMMMMy. .yMMMMMMm:${c1}yyyyys +${c2}sMMMMMMy `sMMMMMMh${c1}yyyyys +${c2}NMMMMMN: .NMMMMMN${c1}yyyyys +${c2}MMMMMMm. NMMMMMN${c1}yyyyys +${c2}hMMMMMM+ /MMMMMMN${c1}yyyyys +${c2}:NMMMMMN: :mMMMMMM+${c1}yyyyys +${c2} oMMMMMMNs- .sNMMMMMMs.${c1}yyyyys +${c2} +MMMMMMMNho:.` `.:ohNMMMMMMNo ${c1}`yyyyys +${c2} -hMMMMMMMMNNNmmNNNMMMMMMMMh- ${c1}`yyyyys +${c2} :yNMMMMMMMMMMMMMMMMMMNy:` ${c1}`yyyyys +${c2} .:sdNMMMMMMMMMMNds/. ${c1}`yyyyyo +${c2} `.:/++++/:.` ${c1}:oys+. +EOF ;; "BSD") set_colors 1 7 4 3 6 - ascii_file="bsd" + read -rd '' ascii_data <<'EOF' +${c1} , , + /( )` + \ \___ / | + /- _ `-/ ' + (${c2}/\/ \ ${c1}\ /\ + ${c2}/ / | ` ${c1}\ + ${c3}O O ${c2}) ${c1}/ | + ${c2}`-^--'${c1}`< ' + (_.) _ ) / + `.___/` / + `-----' / +${c4}<----. __ / __ \ +${c4}<----|====${c1}O)))${c4}==${c1}) \) /${c4}====| +<----' ${c1}`--' `.__,' \ + | | + \ / /\ + ${c5}______${c1}( (_ / \______/ + ${c5},' ,-----' | + `--{__________) +EOF ;; "BunsenLabs"*) set_colors fg 7 - ascii_file="bunsenlabs" + read -rd '' ascii_data <<'EOF' +${c1} `++ + -yMMs + `yMMMMN` + -NMMMMMMm. + :MMMMMMMMMN- + .NMMMMMMMMMMM/ + yMMMMMMMMMMMMM/ +`MMMMMMNMMMMMMMN. +-MMMMN+ /mMMMMMMy +-MMMm` `dMMMMMM +`MMN. .NMMMMM. + hMy yMMMMM` + -Mo +MMMMN + /o +MMMMs + +MMMN` + hMMM: + `NMM/ + +MN: + mh. + -/ +EOF ;; "Calculate"*) set_colors 7 3 - ascii_file="calculate" + read -rd '' ascii_data <<'EOF' +${c1} ...... + ,,+++++++,. + .,,,....,,,${c2}+**+,,.${c1} + ............,${c2}++++,,,${c1} + ............... + ......,,,........ + .....+*#####+,,,*+. + .....,*###############,..,,,,,,.. + ......,*#################*..,,,,,..,,,.. + .,,....*####################+***+,,,,...,++, + .,,..,..*#####################*, + ,+,.+*..*#######################. + ,+,,+*+..,########################* +.,++++++. ..+##**###################+ +..... ..+##***#################*. + .,.*#*****##############*. + ..,,*********#####****+. + ${c2}.,++*****+++${c1}*****************${c2}+++++,.${c1} + ${c2},++++++**+++++${c1}***********${c2}+++++++++,${c1} + ${c2}.,,,,++++,.. .,,,,,.....,+++,.,,${c1} +EOF ;; "CentOS"*) set_colors 3 2 4 5 7 - ascii_file="centos" + read -rd '' ascii_data <<'EOF' + +EOF ;; "Chakra"*) set_colors 4 5 7 6 - ascii_file="chakra" + read -rd '' ascii_data <<'EOF' + +EOF ;; "ChaletOS"*) set_colors 4 7 1 - ascii_file="chaletos" + read -rd '' ascii_data <<'EOF' + +EOF ;; "Chapeau"*) set_colors 2 7 - ascii_file="chapeau" + read -rd '' ascii_data <<'EOF' + +EOF ;; "Chrom"*) set_colors 2 1 3 4 7 - ascii_file="chrome" + read -rd '' ascii_data <<'EOF' + +EOF ;; "Clover"*) set_colors 2 6 - ascii_file="cloveros" + read -rd '' ascii_data <<'EOF' + +EOF ;; "Container Linux by CoreOS"*) set_colors 4 7 1 - ascii_file="coreos" + read -rd '' ascii_data <<'EOF' + +EOF ;; "crux_small") set_colors 4 5 7 6 - ascii_file="crux_small" + read -rd '' ascii_data <<'EOF' + +EOF ;; "CRUX"*) set_colors 4 5 7 6 - ascii_file="crux" + read -rd '' ascii_data <<'EOF' + +EOF ;; "debian_small") set_colors 1 7 3 - ascii_file="debian_small" + read -rd '' ascii_data <<'EOF' + +EOF ;; "Debian"*) set_colors 1 7 3 - ascii_file="debian" + read -rd '' ascii_data <<'EOF' + +EOF ;; "Deepin"*) set_colors 2 7 - ascii_file="deepin" + read -rd '' ascii_data <<'EOF' + +EOF ;; "DesaOS") set_colors 2 7 - ascii_file="desaos" + read -rd '' ascii_data <<'EOF' + +EOF ;; "Devuan"*) set_colors 5 7 - ascii_file="devuan" + read -rd '' ascii_data <<'EOF' + +EOF ;; "DracOS"*) set_colors 1 7 3 - ascii_file="dracos" + read -rd '' ascii_data <<'EOF' + +EOF ;; "dragonfly_old"*) set_colors 1 7 3 - ascii_file="dragonflybsd_old" + read -rd '' ascii_data <<'EOF' + +EOF ;; "dragonfly_small"*) set_colors 1 7 3 - ascii_file="dragonflybsd_small" + read -rd '' ascii_data <<'EOF' + +EOF ;; "DragonFly"*) set_colors 1 7 3 - ascii_file="dragonflybsd" + read -rd '' ascii_data <<'EOF' + +EOF ;; "Elementary"*) set_colors 4 7 1 - ascii_file="elementary" + read -rd '' ascii_data <<'EOF' + +EOF ;; "Endless"*) set_colors 1 7 - ascii_file="endless" + read -rd '' ascii_data <<'EOF' + +EOF ;; "Exherbo"*) set_colors 4 7 1 - ascii_file="exherbo" + read -rd '' ascii_data <<'EOF' + +EOF ;; "Fedora"* | "RFRemix"*) set_colors 4 7 1 - ascii_file="fedora" + read -rd '' ascii_data <<'EOF' + +EOF ;; "freebsd_small") set_colors 1 7 3 - ascii_file="freebsd_small" + read -rd '' ascii_data <<'EOF' + +EOF ;; "FreeBSD"*) set_colors 1 7 3 - ascii_file="freebsd" + read -rd '' ascii_data <<'EOF' + +EOF ;; "FreeMiNT"*) # Don't explicitly set colors since # TosWin2 doesn't reset well. - ascii_file="gem" + read -rd '' ascii_data <<'EOF' + +EOF ;; "Frugalware"*) set_colors 4 7 1 - ascii_file="frugalware" + read -rd '' ascii_data <<'EOF' + +EOF ;; "Funtoo"*) set_colors 5 7 - ascii_file="funtoo" + read -rd '' ascii_data <<'EOF' + +EOF ;; "GalliumOS"*) set_colors 4 7 1 - ascii_file="galliumos" + read -rd '' ascii_data <<'EOF' + +EOF ;; "gentoo_small") set_colors 5 7 - ascii_file="gentoo_small" + read -rd '' ascii_data <<'EOF' + +EOF ;; "Gentoo"*) set_colors 5 7 - ascii_file="gentoo" + read -rd '' ascii_data <<'EOF' + +EOF ;; "gNewSense"*) set_colors 4 5 7 6 - ascii_file="gnewsense" + read -rd '' ascii_data <<'EOF' + +EOF ;; "GNU") set_colors fg 7 - ascii_file="gnu" + read -rd '' ascii_data <<'EOF' + +EOF ;; "GoboLinux"*) set_colors 5 4 6 2 - ascii_file="gobolinux" + read -rd '' ascii_data <<'EOF' + +EOF ;; "Grombyang"*) set_colors 4 2 1 - ascii_file="grombyang" + read -rd '' ascii_data <<'EOF' + +EOF ;; "GuixSD"*) set_colors 3 7 6 1 8 - ascii_file="guixsd" + read -rd '' ascii_data <<'EOF' + +EOF ;; "Haiku"*) set_colors 2 8 - ascii_file="haiku" + read -rd '' ascii_data <<'EOF' + +EOF ;; "Hyperbola"*) set_colors 8 - ascii_file="hyperbola" + read -rd '' ascii_data <<'EOF' + +EOF ;; "Kali"*) set_colors 4 8 - ascii_file="kali" + read -rd '' ascii_data <<'EOF' + +EOF ;; "KaOS"*) set_colors 4 7 1 - ascii_file="kaos" + read -rd '' ascii_data <<'EOF' + +EOF ;; "KDE"*) set_colors 2 7 - ascii_file="kde" + read -rd '' ascii_data <<'EOF' + +EOF ;; "Kogaion"*) set_colors 4 7 1 - ascii_file="kogaion" + read -rd '' ascii_data <<'EOF' + +EOF ;; "Korora"*) set_colors 4 7 1 - ascii_file="korora" + read -rd '' ascii_data <<'EOF' + +EOF ;; "KSLinux"*) set_colors 4 7 1 - ascii_file="kslinux" + read -rd '' ascii_data <<'EOF' + +EOF ;; "Kubuntu"*) set_colors 4 7 1 - ascii_file="kubuntu" + read -rd '' ascii_data <<'EOF' + +EOF ;; "LEDE"*) set_colors 4 7 1 - ascii_file="lede" + read -rd '' ascii_data <<'EOF' + +EOF ;; "Linux") set_colors fg 8 3 - ascii_file="linux" + read -rd '' ascii_data <<'EOF' + +EOF ;; "LMDE"*) set_colors 2 7 - ascii_file="lmde" + read -rd '' ascii_data <<'EOF' + +EOF ;; "Lubuntu"*) set_colors 4 7 1 - ascii_file="lubuntu" + read -rd '' ascii_data <<'EOF' + +EOF ;; "Lunar"*) set_colors 4 7 3 - ascii_file="lunar" + read -rd '' ascii_data <<'EOF' + +EOF ;; "mac"*"_small") set_colors 2 3 1 5 4 - ascii_file="mac_small" + read -rd '' ascii_data <<'EOF' + +EOF ;; "mac" | "Darwin") set_colors 2 3 1 1 5 4 - ascii_file="mac" + read -rd '' ascii_data <<'EOF' + +EOF ;; "Mageia"*) set_colors 6 7 - ascii_file="mageia" + read -rd '' ascii_data <<'EOF' + +EOF ;; "MagpieOS"*) set_colors 2 1 3 5 - ascii_file="magpieos" + read -rd '' ascii_data <<'EOF' + +EOF ;; "Manjaro"*) set_colors 2 7 - ascii_file="manjaro" + read -rd '' ascii_data <<'EOF' + +EOF ;; "Maui"*) set_colors 6 7 - ascii_file="maui" + read -rd '' ascii_data <<'EOF' + +EOF ;; "Mer"*) set_colors 4 7 1 - ascii_file="mer" + read -rd '' ascii_data <<'EOF' + +EOF ;; "Minix"*) set_colors 1 7 3 - ascii_file="minix" + read -rd '' ascii_data <<'EOF' + +EOF ;; "Linux Mint"* | "LinuxMint"*) set_colors 2 7 - ascii_file="mint" + read -rd '' ascii_data <<'EOF' + +EOF ;; "MX"*) set_colors 4 6 7 - ascii_file="mx" + read -rd '' ascii_data <<'EOF' + +EOF ;; "NetBSD"*) set_colors 5 7 - ascii_file="netbsd" + read -rd '' ascii_data <<'EOF' + +EOF ;; "Netrunner"*) set_colors 4 7 1 - ascii_file="netrunner" + read -rd '' ascii_data <<'EOF' + +EOF ;; "Nitrux"*) set_colors 4 - ascii_file="nitrux" + read -rd '' ascii_data <<'EOF' + +EOF ;; "nixos_small") set_colors 4 6 - ascii_file="nixos_small" + read -rd '' ascii_data <<'EOF' + +EOF ;; "NixOS"*) set_colors 4 6 - ascii_file="nixos" + read -rd '' ascii_data <<'EOF' + +EOF ;; "Nurunner"*) set_colors 4 - ascii_file="nurunner" + read -rd '' ascii_data <<'EOF' + +EOF ;; "NuTyX"*) set_colors 4 1 - ascii_file="nutyx" + read -rd '' ascii_data <<'EOF' + +EOF ;; "OBRevenge"*) set_colors 1 7 3 - ascii_file="obrevenge" + read -rd '' ascii_data <<'EOF' + +EOF ;; "openbsd_small") set_colors 3 7 6 1 8 - ascii_file="openbsd_small" + read -rd '' ascii_data <<'EOF' + +EOF ;; "OpenBSD"*) set_colors 3 7 6 1 8 - ascii_file="openbsd" + read -rd '' ascii_data <<'EOF' + +EOF ;; "OpenIndiana"*) set_colors 4 7 1 - ascii_file="openindiana" + read -rd '' ascii_data <<'EOF' + +EOF ;; "OpenMandriva"*) set_colors 4 3 - ascii_file="openmandriva" + read -rd '' ascii_data <<'EOF' + +EOF ;; "OpenWrt"*) set_colors 4 7 1 - ascii_file="openwrt" + read -rd '' ascii_data <<'EOF' + +EOF ;; "Open Source Media Center"* | "osmc") set_colors 4 7 1 - ascii_file="osmc" + read -rd '' ascii_data <<'EOF' + +EOF ;; "Oracle"*) set_colors 1 7 3 - ascii_file="oracle" + read -rd '' ascii_data <<'EOF' + +EOF ;; "PacBSD"*) set_colors 1 7 3 - ascii_file="pacbsd" + read -rd '' ascii_data <<'EOF' + +EOF ;; "Parabola"*) set_colors 5 7 - ascii_file="parabola" + read -rd '' ascii_data <<'EOF' + +EOF ;; "Pardus"*) set_colors 3 7 6 1 8 - ascii_file="pardus" + read -rd '' ascii_data <<'EOF' + +EOF ;; "Parrot"*) set_colors 6 7 - ascii_file="parrot" + read -rd '' ascii_data <<'EOF' + +EOF ;; "Parsix"*) set_colors 3 1 7 8 - ascii_file="parsix" + read -rd '' ascii_data <<'EOF' + +EOF ;; "PCBSD"* | "TrueOS"*) set_colors 1 7 3 - ascii_file="trueos" + read -rd '' ascii_data <<'EOF' + +EOF ;; "PCLinuxOS"*) set_colors 4 7 1 - ascii_file="pclinuxos" + read -rd '' ascii_data <<'EOF' + +EOF ;; "Peppermint"*) set_colors 1 7 3 - ascii_file="peppermint" + read -rd '' ascii_data <<'EOF' + +EOF ;; "Pop!_OS"*) set_colors 6 7 - ascii_file="pop_os" + read -rd '' ascii_data <<'EOF' + +EOF ;; "Porteus"*) set_colors 6 7 - ascii_file="porteus" + read -rd '' ascii_data <<'EOF' + +EOF ;; "PostMarketOS"*) set_colors 2 7 - ascii_file="postmarketos" + read -rd '' ascii_data <<'EOF' + +EOF ;; "Puppy"* | "Quirky Werewolf"* | "Precise Puppy"*) set_colors 4 7 - ascii_file="puppy" + read -rd '' ascii_data <<'EOF' + +EOF ;; "Qubes"*) set_colors 4 5 7 6 - ascii_file="qubes" + read -rd '' ascii_data <<'EOF' + +EOF ;; "Raspbian"*) set_colors 2 1 - ascii_file="raspbian" + read -rd '' ascii_data <<'EOF' + +EOF ;; "Red Star"* | "Redstar"*) set_colors 1 7 3 - ascii_file="redstar" + read -rd '' ascii_data <<'EOF' + +EOF ;; "Redhat"* | "Red Hat"* | "rhel"*) set_colors 1 7 3 - ascii_file="redhat" + read -rd '' ascii_data <<'EOF' + +EOF ;; "Refracted Devuan"*) set_colors 8 7 - ascii_file="refracta" + read -rd '' ascii_data <<'EOF' + +EOF ;; "Rosa"*) set_colors 4 7 1 - ascii_file="rosa" + read -rd '' ascii_data <<'EOF' + +EOF ;; "sabotage"*) set_colors 4 7 1 - ascii_file="sabotage" + read -rd '' ascii_data <<'EOF' + +EOF ;; "Sabayon"*) set_colors 4 7 1 - ascii_file="sabayon" + read -rd '' ascii_data <<'EOF' + +EOF ;; "SailfishOS"*) set_colors 4 5 7 6 - ascii_file="sailfishos" + read -rd '' ascii_data <<'EOF' + +EOF ;; "SalentOS"*) set_colors 2 1 3 7 - ascii_file="salentos" + read -rd '' ascii_data <<'EOF' + +EOF ;; "Scientific"*) set_colors 4 7 1 - ascii_file="scientific" + read -rd '' ascii_data <<'EOF' + +EOF ;; "Siduction"*) set_colors 4 4 - ascii_file="siduction" + read -rd '' ascii_data <<'EOF' + +EOF ;; "Slackware"*) set_colors 4 7 1 - ascii_file="slackware" + read -rd '' ascii_data <<'EOF' + +EOF ;; "SliTaz"*) set_colors 3 3 - ascii_file="slitaz" + read -rd '' ascii_data <<'EOF' + +EOF ;; "SmartOS"*) set_colors 6 7 - ascii_file="smartos" + read -rd '' ascii_data <<'EOF' + +EOF ;; "Solus"*) set_colors 4 7 1 - ascii_file="solus" + read -rd '' ascii_data <<'EOF' + +EOF ;; "Source Mage"*) set_colors 4 7 1 - ascii_file="source_mage" + read -rd '' ascii_data <<'EOF' + +EOF ;; "Sparky"*) set_colors 1 7 - ascii_file="sparky" + read -rd '' ascii_data <<'EOF' + +EOF ;; "SteamOS"*) set_colors 5 7 - ascii_file="steamos" + read -rd '' ascii_data <<'EOF' + +EOF ;; "SunOS" | "Solaris") set_colors 3 7 - ascii_file="solaris" + read -rd '' ascii_data <<'EOF' + +EOF ;; "openSUSE Tumbleweed"*) set_colors 2 7 - ascii_file="tumbleweed" + read -rd '' ascii_data <<'EOF' + +EOF ;; "openSUSE"* | "open SUSE"* | "SUSE"*) set_colors 2 7 - ascii_file="suse" + read -rd '' ascii_data <<'EOF' + +EOF ;; "SwagArch"*) set_colors 4 7 1 - ascii_file="swagarch" + read -rd '' ascii_data <<'EOF' + +EOF ;; "Tails"*) set_colors 5 7 - ascii_file="tails" + read -rd '' ascii_data <<'EOF' + +EOF ;; "Trisquel"*) set_colors 4 6 - ascii_file="trisquel" + read -rd '' ascii_data <<'EOF' + +EOF ;; "Ubuntu-Budgie"*) set_colors 4 7 1 - ascii_file="ubuntu-budgie" + read -rd '' ascii_data <<'EOF' + +EOF ;; "Ubuntu-GNOME"*) set_colors 4 5 7 6 - ascii_file="ubuntu-gnome" + read -rd '' ascii_data <<'EOF' + +EOF ;; "Ubuntu-MATE"*) set_colors 2 7 - ascii_file="ubuntu-mate" + read -rd '' ascii_data <<'EOF' + +EOF ;; "ubuntu_old") set_colors 1 7 3 - ascii_file="ubuntu_old" + read -rd '' ascii_data <<'EOF' + +EOF ;; "Ubuntu-Studio") set_colors 6 7 - ascii_file="ubuntu-studio" + read -rd '' ascii_data <<'EOF' + +EOF ;; "Ubuntu"*) set_colors 1 7 3 - ascii_file="ubuntu" + read -rd '' ascii_data <<'EOF' + +EOF ;; "void_small") set_colors 2 8 - ascii_file="void_small" + read -rd '' ascii_data <<'EOF' + +EOF ;; "Void"*) set_colors 2 8 - ascii_file="void" + read -rd '' ascii_data <<'EOF' + +EOF ;; *"[Windows 10]"* | *"on Windows 10"* | "Windows 8"* |\ "Windows 10"* | "windows10" | "windows8" ) set_colors 6 7 - ascii_file="windows10" + read -rd '' ascii_data <<'EOF' + +EOF ;; "Windows"*) set_colors 1 2 4 3 - ascii_file="windows" + read -rd '' ascii_data <<'EOF' + +EOF ;; "Xubuntu"*) set_colors 4 7 1 - ascii_file="xubuntu" + read -rd '' ascii_data <<'EOF' + +EOF ;; "Zorin"*) set_colors 4 6 - ascii_file="zorin" + read -rd '' ascii_data <<'EOF' + +EOF ;; *) From 4e0f7ac2918c8fed4e174ceed8a3130d0359c43b Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Thu, 3 May 2018 14:39:24 +1000 Subject: [PATCH 09/25] general: Start inlining ascii. --- neofetch | 463 +++++++++++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 435 insertions(+), 28 deletions(-) diff --git a/neofetch b/neofetch index 07b053bd..6e721c7d 100755 --- a/neofetch +++ b/neofetch @@ -4739,14 +4739,49 @@ EOF "CentOS"*) set_colors 3 2 4 5 7 read -rd '' ascii_data <<'EOF' - +${c1} .. + .PLTJ. + <><><><> + ${c2}KKSSV' 4KKK ${c1}LJ${c4} KKKL.'VSSKK + ${c2}KKV' 4KKKKK ${c1}LJ${c4} KKKKAL 'VKK + ${c2}V' ' 'VKKKK ${c1}LJ${c4} KKKKV' ' 'V + ${c2}.4MA.' 'VKK ${c1}LJ${c4} KKV' '.4Mb. +${c4} . ${c2}KKKKKA.' 'V ${c1}LJ${c4} V' '.4KKKKK ${c3}. +${c4} .4D ${c2}KKKKKKKA.'' ${c1}LJ${c4} ''.4KKKKKKK ${c3}FA. +${c4} +${c4} 'VD ${c3}KKKKKKKK'.. ${c2}LJ ${c1}..'KKKKKKKK ${c3}FV +${c4} ' ${c3}VKKKKK'. .4 ${c2}LJ ${c1}K. .'KKKKKV ${c3}' + ${c3} 'VK'. .4KK ${c2}LJ ${c1}KKA. .'KV' + ${c3}A. . .4KKKK ${c2}LJ ${c1}KKKKA. . .4 + ${c3}KKA. 'KKKKK ${c2}LJ ${c1}KKKKK' .4KK + ${c3}KKSSA. VKKK ${c2}LJ ${c1}KKKV .4SSKK +${c2} <><><><> + 'MKKM' + '' EOF ;; "Chakra"*) set_colors 4 5 7 6 read -rd '' ascii_data <<'EOF' - +${c1} _ _ _ "kkkkkkkk. + ,kkkkkkkk., 'kkkkkkkkk, + ,kkkkkkkkkkkk., 'kkkkkkkkk. + ,kkkkkkkkkkkkkkkk,'kkkkkkkk, + ,kkkkkkkkkkkkkkkkkkk'kkkkkkk. + "''"''',;::,,"''kkk''kkkkk; __ + ,kkkkkkkkkk, "k''kkkkk' ,kkkk + ,kkkkkkk' ., ' .: 'kkkk',kkkkkk + ,kkkkkkkk'.k' , ,kkkk;kkkkkkkkk + ,kkkkkkkk';kk 'k "'k',kkkkkkkkkkkk +.kkkkkkkkk.kkkk.'kkkkkkkkkkkkkkkkkk' +;kkkkkkkk''kkkkkk;'kkkkkkkkkkkkk'' +'kkkkkkk; 'kkkkkkkk.,""''"''"" + ''kkkk; 'kkkkkkkkkk., + ';' 'kkkkkkkkkkkk., + ';kkkkkkkkkk' + ';kkkkkk' + "''" EOF ;; @@ -4767,140 +4802,425 @@ EOF "Chrom"*) set_colors 2 1 3 4 7 read -rd '' ascii_data <<'EOF' - +${c1} `.//+osso+/:`` + `/sdNNmhyssssydmNNdo:` + :hNmy+-` .-+hNNs- + /mMh/` `+:` `+dMd: + .hMd- -sNNMNo. /yyy /mMs` + -NM+ `/dMd/--omNh::dMM `yMd` + .NN+ .sNNs:/dMNy:/hNmo/s yMd` + hMs `/hNd+-smMMMMMMd+:omNy- `dMo +:NM. .omMy:/hNMMMMMMMMMMNy:/hMd+` :Md` +/Md` `sm+.omMMMMMMMMMMMMMMMMd/-sm+ .MN: +/Md` MMMMMMMMMMMMMMMMMMMN .MN: +:NN. MMMMMMm....--NMMMMMN -Mm. +`dMo MMMMMMd mMMMMMN hMs + -MN: MMMMMMd mMMMMMN oMm` + :NM: MMMMMMd mMMMMMN +Mm- + -mMy. mmmmmmh dmmmmmh -hMh. + oNNs- :yMm/ + .+mMdo:` `:smMd/` + -ohNNmhsoo++osshmNNh+. + `./+syyhhyys+:`` EOF ;; "Clover"*) set_colors 2 6 read -rd '' ascii_data <<'EOF' - +${c1} `omo``omo` + `oNMMMNNMMMNo` + `oNMMMMMMMMMMMMNo` + oNMMMMMMMMMMMMMMMMNo + `sNMMMMMMMMMMMMMMNs` + `omo` `sNMMMMMMMMMMNs` `omo` + `oNMMMNo` `sNMMMMMMNs` `oNMMMNo` + `oNMMMMMMMNo` `oNMMNs` `oNMMMMMMMNo` +oNMMMMMMMMMMMNo` `sy` `oNMMMMMMMMMMMNo +`sNMMMMMMMMMMMMNo.${c2}oNNs${c1}.oNMMMMMMMMMMMMNs` +`oNMMMMMMMMMMMMNs.${c2}oNNs${c1}.oNMMMMMMMMMMMMNo` +oNMMMMMMMMMMMNs` `sy` `oNMMMMMMMMMMMNo + `oNMMMMMMMNs` `oNMMNo` `oNMMMMMMMNs` + `oNMMMNs` `sNMMMMMMNs` `oNMMMNs` + `oNs` `sNMMMMMMMMMMNs` `oNs` + `sNMMMMMMMMMMMMMMNs` + +NMMMMMMMMMMMMMMMMNo + `oNMMMMMMMMMMMMNo` + `oNMMMNNMMMNs` + `omo``oNs` EOF ;; "Container Linux by CoreOS"*) set_colors 4 7 1 read -rd '' ascii_data <<'EOF' - +${c1} ..... + .';:cccccccc:;'. + ':ccccclc${c3}lllllllll${c1}cc:. + .;cccccccc${c3}lllllllllllllll${c1}c, + ;clllccccc${c3}llllllllllllllllll${c1}c, + .cllclccccc${c3}lllll${c2}lll${c3}llllllllllll${c1}c: + ccclclcccc${c3}cllll${c2}kWMMNKk${c3}llllllllll${c1}c: + :ccclclcccc${c3}llll${c2}oWMMMMMMWO${c3}lllllllll${c1}c, +.ccllllllccc${c3}clll${c2}OMMMMMMMMM0${c3}lllllllll${c1}c +.lllllclcccc${c3}llll${c2}KMMMMMMMMMMo${c3}llllllll${c1}c. +.lllllllcccc${c3}clll${c2}KMMMMMMMMN0${c3}lllllllll${c1}c. +.cclllllcccc${c3}lllld${c2}xkkxxdo${c3}llllllllllc${c1}lc + :cccllllllcccc${c3}lllccllllcclccc${c1}cccccc; + .ccclllllllcccccccc${c3}lll${c1}ccccclccccccc + .cllllllllllclcccclccclccllllcllc + :cllllllllccclcllllllllllllcc; + .cccccccccccccclcccccccccc:. + .;cccclccccccllllllccc,. + .';ccccclllccc:;.. + ..... EOF ;; "crux_small") set_colors 4 5 7 6 read -rd '' ascii_data <<'EOF' - +${c1} ___ + (${c3}.· ${c1}| + (${c2}<> ${c1}| + / ${c3}__ ${c1}\\ + ( ${c3}/ \\ ${c1}/| +${c2}_${c1}/\\ ${c3}__)${c1}/${c2}_${c1}) +${c2}\/${c1}-____${c2}\/ EOF ;; "CRUX"*) set_colors 4 5 7 6 read -rd '' ascii_data <<'EOF' - +${c1} odddd + oddxkkkxxdoo + ddcoddxxxdoool + xdclodod olol + xoc xdd olol + xdc ${c2}k00${c1}Okdlol + xxd${c2}kOKKKOkd${c1}ldd + xdco${c2}xOkdlo${c1}dldd + ddc:cl${c2}lll${c1}oooodo + odxxdd${c3}xkO000kx${c1}ooxdo + oxdd${c3}x0NMMMMMMWW0od${c1}kkxo + oooxd${c3}0WMMMMMMMMMW0o${c1}dxkx +docldkXW${c3}MMMMMMMWWN${c1}Odolco +xx${c2}dx${c1}kxxOKN${c3}WMMWN${c1}0xdoxo::c +${c2}xOkkO${c1}0oo${c3}odOW${c2}WW${c1}XkdodOxc:l +${c2}dkkkxkkk${c3}OKX${c2}NNNX0Oxx${c1}xc:cd +${c2} odxxdx${c3}xllod${c2}ddooxx${c1}dc:ldo +${c2} lodd${c1}dolccc${c2}ccox${c1}xoloo EOF ;; "debian_small") set_colors 1 7 3 read -rd '' ascii_data <<'EOF' - + ${c1}_____ + / __ \\ +| / | +| \\___- +-_ + --_ EOF ;; "Debian"*) set_colors 1 7 3 read -rd '' ascii_data <<'EOF' - +${c2} _,met$$$$$gg. + ,g$$$$$$$$$$$$$$$P. + ,g$$P" """Y$$.". + ,$$P' `$$$. +',$$P ,ggs. `$$b: +`d$$' ,$P"' ${c1}.${c2} $$$ + $$P d$' ${c1},${c2} $$P + $$: $$. ${c1}-${c2} ,d$$' + $$; Y$b._ _,d$P' + Y$$. ${c1}`.${c2}`"Y$$$$P"' +${c2} `$$b ${c1}"-.__ +${c2} `Y$$ + `Y$$. + `$$b. + `Y$$b. + `"Y$b._ + `""" EOF ;; "Deepin"*) set_colors 2 7 read -rd '' ascii_data <<'EOF' - +${c1} ............ + .';;;;;. .,;,. + .,;;;;;;;. ';;;;;;;. + .;::::::::' .,::;;,''''',. + ,'.:::::::: .;;'. '; + ;' 'cccccc, ,' :: '.. .: + ,, :ccccc. ;: .c, '' :. ,; +.l. cllll' ., .lc :; .l' l. +.c :lllc ;cl: .l' .ll. :' +.l 'looc. . ,o: 'oo' c, +.o. .:ool::coc' .ooo' o. + :: ..... .;dddo ;c + l:... .';lddddo. ,o + lxxxxxdoolllodxxxxxxxxxc :l + ,dxxxxxxxxxxxxxxxxxxl. 'o, + ,dkkkkkkkkkkkkko;. .;o; + .;okkkkkdl;. .,cl:. + .,:cccccccc:,. EOF ;; "DesaOS") set_colors 2 7 read -rd '' ascii_data <<'EOF' - +${c1}███████████████████████ +███████████████████████ +███████████████████████ +███████████████████████ +████████ ███████ +████████ ███████ +████████ ███████ +████████ ███████ +████████ ███████ +████████ ███████ +████████ ███████ +██████████████████████████████ +██████████████████████████████ +████████████████████████ +████████████████████████ +████████████████████████ EOF ;; "Devuan"*) set_colors 5 7 read -rd '' ascii_data <<'EOF' - +${c1} ..,,;;;::;,.. + `':ddd;:,. + `'dPPd:,. + `:b$$b`. + 'P$$$d` + .$$$$$` + ;$$$$$P + .:P$$$$$$` + .,:b$$$$$$$;' + .,:dP$$$$$$$$b:' + .,:;db$$$$$$$$$$Pd'` + ,db$$$$$$$$$$$$$$b:'` +:$$$$$$$$$$$$b:'` + `$$$$$bd:''` + `'''` EOF ;; "DracOS"*) set_colors 1 7 3 read -rd '' ascii_data <<'EOF' - +${c1} `-:/- + -os: + -os/` + :sy+-` + `/yyyy+. + `+yyyyo- + `/yyyys: +`:osssoooo++- +yyyyyy/` + ./yyyyyyo yo`:syyyy+. + -oyyy+ +- :yyyyyo- + `:sy: `. `/yyyyys: + ./o/.` .oyyso+oo:` + :+oo+//::::///:-.` `.` EOF ;; "dragonfly_old"*) set_colors 1 7 3 read -rd '' ascii_data <<'EOF' - + ${c1} | + .-. + ${c3} ()${c1}I${c3}() + ${c1} "==.__:-:__.==" + "==.__/~|~\__.==" + "==._( Y )_.==" + ${c2}.-'~~""~=--...,__${c1}\/|\/${c2}__,...--=~""~~'-. +( ..=${c1}\\=${c1}/${c2}=.. ) + `'-. ,.-"`;${c1}/=\\${c2};"-.,_ .-'` + `~"-=-~` .-~` ${c1}|=|${c2} `~-. `~-=-"~` + .-~` /${c1}|=|${c2}\ `~-. + .~` / ${c1}|=|${c2} \ `~. + .-~` .' ${c1}|=|${c2} `. `~-. + (` _,.-="` ${c1} |=|${c2} `"=-.,_ `) + `~"~"` ${c1} |=|${c2} `"~"~` + ${c1} /=\\ + \\=/ + ^ EOF ;; "dragonfly_small"*) set_colors 1 7 3 read -rd '' ascii_data <<'EOF' - +${c2}(\${c3}"${c2}/) +${c2}(/${c1}|${c2}\) +${c1} | + | EOF ;; "DragonFly"*) set_colors 1 7 3 read -rd '' ascii_data <<'EOF' - +${c2},--, ${c1}| ${c2},--, +${c2}| `-, ${c1},^, ${c2},-' | +${c2} `, `-, ${c3}(/ \) ${c2},-' ,' +${c2} `-, `-,${c1}/ \${c2},-' ,-' +${c2} `------${c1}( )${c2}------' +${c2} ,----------${c1}( )${c2}----------, +${c2} | _,-${c1}( )${c2}-,_ | +${c2} `-,__,-' ${c1}\ /${c2} `-,__,-' +${c1} | | + | | + | | + | | + | | + | | + `|' EOF ;; "Elementary"*) set_colors 4 7 1 read -rd '' ascii_data <<'EOF' - +${c2} eeeeeeeeeeeeeeeee + eeeeeeeeeeeeeeeeeeeeeee + eeeee eeeeeeeeeeee eeeee + eeee eeeee eee eeee + eeee eeee eee eeee +eee eee eee eee +eee eee eee eee +ee eee eeee eeee +ee eee eeeee eeeeee +ee eee eeeee eeeee ee +eee eeee eeeeee eeeee eee +eee eeeeeeeeee eeeeee eee + eeeeeeeeeeeeeeeeeeeeeeee eeeee + eeeeeeee eeeeeeeeeeee eeee + eeeee eeeee + eeeeeee eeeeeee + eeeeeeeeeeeeeeeee EOF ;; "Endless"*) set_colors 1 7 read -rd '' ascii_data <<'EOF' - +${c1} `:+yhmNMMMMNmhy+:` + -odMMNhso//////oshNMMdo- + /dMMh+. .+hMMd/ + /mMNo` `oNMm: + `yMMo` `oMMy` + `dMN- -NMd` + hMN. .NMh +/MM/ -os` /MM/ +dMm `smNmmhs/- `:sNMd+ `` mMd +MMy oMd--:+yMMMMMNo.:ohmMMMNy` yMM +MMy -NNyyhmMNh+oNMMMMMy:. dMo yMM +dMm `/++/-``/yNNh+/sdNMNddMm- mMd +/MM/ `dNy: `-::- /MM/ + hMN. .NMh + `dMN- -NMd` + `yMMo` `oMMy` + /mMNo` `oNMm/ + /dMMh+. .+hMMd/ + -odMMNhso//////oshNMMdo- + `:+yhmNMMMMNmhy+:` EOF ;; "Exherbo"*) set_colors 4 7 1 read -rd '' ascii_data <<'EOF' - +${c2} , +OXo. +NXdX0: .cok0KXNNXXK0ko:. +KX '0XdKMMK;.xMMMk, .0MMMMMXx; ... +'NO..xWkMMx kMMM cMMMMMX,NMWOxOXd. + cNMk NK .oXM. OMMMMO. 0MMNo kW. + lMc o: ., .oKNk; ;NMMWlxW' + ;Mc .. .,,' .0M${c1}g;${c2}WMN'dWMMMMMMO + XX ,WMMMMW. cM${c1}cfli${c2}WMKlo. .kMk +.Mo .WM${c1}GD${c2}MW. XM${c1}WO0${c2}MMk oMl +,M: ,XMMWx::,''oOK0x; NM. +'Ml ,kNKOxxxxxkkO0XXKOd:. oMk + NK .0Nxc${c3}:::::::::::::::${c2}fkKNk, .MW + ,Mo .NXc${c3}::${c2}qXWXb${c3}::::::::::${c2}oo${c3}::${c2}lNK. .MW + ;Wo oMd${c3}:::${c2}oNMNP${c3}::::::::${c2}oWMMMx${c3}:${c2}c0M; lMO + 'NO;W0c${c3}:::::::::::::::${c2}dMMMMO${c3}::${c2}lMk .WM' + xWONXdc${c3}::::::::::::::${c2}oOOo${c3}::${c2}lXN. ,WMd + 'KWWNXXK0Okxxo,${c3}:::::::${c2},lkKNo xMMO + :XMNxl,';:lodxkOO000Oxc. .oWMMo + 'dXMMXkl;,. .,o0MMNo' + ':d0XWMMMMWNNNNMMMNOl' + ':okKXWNKkl' EOF ;; "Fedora"* | "RFRemix"*) set_colors 4 7 1 read -rd '' ascii_data <<'EOF' - +${c1} /:-------------:\\ + :-------------------:: + :-----------${c2}/shhOHbmp${c1}---:\\ + /-----------${c2}omMMMNNNMMD ${c1}---: + :-----------${c2}sMMMMNMNMP${c1}. ---: + :-----------${c2}:MMMdP${c1}------- ---\\ +,------------${c2}:MMMd${c1}-------- ---: +:------------${c2}:MMMd${c1}------- .---: +:---- ${c2}oNMMMMMMMMMNho${c1} .----: +:-- .${c2}+shhhMMMmhhy++${c1} .------/ +:- -------${c2}:MMMd${c1}--------------: +:- --------${c2}/MMMd${c1}-------------; +:- ------${c2}/hMMMy${c1}------------: +:--${c2} :dMNdhhdNMMNo${c1}------------; +:---${c2}:sdNMMMMNds:${c1}------------: +:------${c2}:://:${c1}-------------:: +:---------------------:// EOF ;; "freebsd_small") set_colors 1 7 3 read -rd '' ascii_data <<'EOF' - +${c1} /\\ _____ /\\ + \\_) (_/ + / \ +| | +| | + \ / + --_____-- EOF ;; "FreeBSD"*) set_colors 1 7 3 read -rd '' ascii_data <<'EOF' - + ${c2}``` ${c1}` + ${c2}` `.....---...${c1}....--.``` -/ + ${c2}+o .--` ${c1}/y:` +. + ${c2} yo`:. ${c1}:o `+- + ${c2}y/ ${c1}-/` -o/ + ${c2}.- ${c1}::/sy+:. + ${c2}/ ${c1}`-- / + ${c2}`: ${c1}:` + ${c2}`: ${c1}:` + ${c2}/ ${c1}/ + ${c2}.- ${c1}-. + ${c2}-- ${c1}-. + ${c2}`:` ${c1}`:` + .-- `--. + .---.....----. EOF ;; @@ -4908,42 +5228,129 @@ EOF # Don't explicitly set colors since # TosWin2 doesn't reset well. read -rd '' ascii_data <<'EOF' - +${c1} ## + ## ######### + #### ## + #### #### ## +#### #### ## ## + #### #### ## ## + #### #### ## ## ## + #### ###### + ###### ## ## #### + #### ################ + #### ## #### + ## #### ###### + ## ## #### #### + ## ## ## ## ## #### + #### ## ## ## EOF ;; "Frugalware"*) set_colors 4 7 1 read -rd '' ascii_data <<'EOF' - +${c1} `++/::-.` + /o+++++++++/::-.` + `o+++++++++++++++o++/::-.` + /+++++++++++++++++++++++oo++/:-.`` + .o+ooooooooooooooooooosssssssso++oo++/:-` + ++osoooooooooooosssssssssssssyyo+++++++o: + -o+ssoooooooooooosssssssssssssyyo+++++++s` + o++ssoooooo++++++++++++++sssyyyyo++++++o: + :o++ssoooooo${c2}/-------------${c1}+syyyyyo+++++oo + `o+++ssoooooo${c2}/-----${c1}+++++ooosyyyyyyo++++os: + /o+++ssoooooo${c2}/-----${c1}ooooooosyyyyyyyo+oooss + .o++++ssooooos${c2}/------------${c1}syyyyyyhsosssy- + ++++++ssooooss${c2}/-----${c1}+++++ooyyhhhhhdssssso + -s+++++syssssss${c2}/-----${c1}yyhhhhhhhhhhhddssssy. + sooooooyhyyyyyh${c2}/-----${c1}hhhhhhhhhhhddddyssy+ + :yooooooyhyyyhhhyyyyyyhhhhhhhhhhdddddyssy` + yoooooooyhyyhhhhhhhhhhhhhhhhhhhddddddysy/ +-ysooooooydhhhhhhhhhhhddddddddddddddddssy + .-:/+osssyyyysyyyyyyyyyyyyyyyyyyyyyyssy: + ``.-/+oosysssssssssssssssssssssss + ``.:/+osyysssssssssssssh. + `-:/+osyyssssyo + .-:+++` EOF ;; "Funtoo"*) set_colors 5 7 read -rd '' ascii_data <<'EOF' - +${c2} _______ ____ + /MMMMMMM/ /MMMM| _____ _____ + __/M${c1}.MMM.${c2}M/_____________|M${c1}.M${c2}MM|/MMMMM\/MMMMM\\ +|MMMM${c1}MM'${c2}MMMMMMMMMMMMMMMMMMM${c1}MM${c2}MMMM${c1}.MMMM..MMMM.${c2}MM\\ +|MM${c1}MMMMMMM${c2}/m${c1}MMMMMMMMMMMMMMMMMMMMMM${c2}MMMM${c1}MM${c2}MMMM${c1}MM${c2}MM| +|MMMM${c1}MM${c2}MMM${c1}MM${c2}MM${c1}MM${c2}MM${c1}MM${c2}MMMMM${c1}\MMM${c2}MMM${c1}MM${c2}MMMM${c1}MM${c2}MMMM${c1}MM${c2}MM| + |MM${c1}MM${c2}MMM${c1}MM${c2}MM${c1}MM${c2}MM${c1}MM${c2}MM${c1}MM${c2}MM${c1}MMM${c2}MMMM${c1}'MMMM''MMMM'${c2}MM/ + |MM${c1}MM${c2}MMM${c1}MM${c2}MM${c1}MM${c2}MM${c1}MM${c2}MM${c1}MM${c2}MM${c1}MMM${c2}MMM\MMMMM/\MMMMM/ + |MM${c1}MM${c2}MMM${c1}MM${c2}MMMMMM${c1}MM${c2}MM${c1}MM${c2}MM${c1}MMMMM'${c2}M| + |MM${c1}MM${c2}MMM${c1}MMMMMMMMMMMMMMMMM MM'${c2}M/ + |MMMMMMMMMMMMMMMMMMMMMMMMMMMM/ EOF ;; "GalliumOS"*) set_colors 4 7 1 read -rd '' ascii_data <<'EOF' - +${c1}sooooooooooooooooooooooooooooooooooooo+: +yyooooooooooooooooooooooooooooooooo+/::: +yyysoooooooooooooooooooooooooooo+/:::::: +yyyyyoooooooooooooooooooooooo+/::::::::: +yyyyyysoooooooooooooooooo++/:::::::::::: +yyyyyyysoooooooooooooo++/::::::::::::::: +yyyyyyyyysoooooo${c2}sydddys${c1}+/::::::::::::::: +yyyyyyyyyysooo${c2}smMMMMMMMNd${c1}+:::::::::::::: +yyyyyyyyyyyyo${c2}sMMMMMMMMMMMN${c1}/::::::::::::: +yyyyyyyyyyyyy${c2}dMMMMMMMMMMMM${c1}o//::::::::::: +yyyyyyyyyyyyy${c2}hMMMMMMMMMMMm${c1}--//:::::::::: +yyyyyyyyyyyyyy${c2}hmMMMMMMMNy${c1}:..-://:::::::: +yyyyyyyyyyyyyyy${c2}yyhhyys+:${c1}......://::::::: +yyyyyyyyyyyyyyys+:--...........-///::::: +yyyyyyyyyyyys+:--................://:::: +yyyyyyyyyo+:-.....................-//::: +yyyyyyo+:-..........................://: +yyyo+:-..............................-// +o/:-...................................: EOF ;; "gentoo_small") set_colors 5 7 read -rd '' ascii_data <<'EOF' - +${c1} _-----_ +( \\ +\ 0 \\ +${c2} \ ) + / _/ +( _- +\____- EOF ;; "Gentoo"*) set_colors 5 7 read -rd '' ascii_data <<'EOF' - +${c1} -/oyddmdhs+:. + -o${c2}dNMMMMMMMMNNmhy+${c1}-` + -y${c2}NMMMMMMMMMMMNNNmmdhy${c1}+- + `o${c2}mMMMMMMMMMMMMNmdmmmmddhhy${c1}/` + om${c2}MMMMMMMMMMMN${c1}hhyyyo${c2}hmdddhhhd${c1}o` +.y${c2}dMMMMMMMMMMd${c1}hs++so/s${c2}mdddhhhhdm${c1}+` + oy${c2}hdmNMMMMMMMN${c1}dyooy${c2}dmddddhhhhyhN${c1}d. + :o${c2}yhhdNNMMMMMMMNNNmmdddhhhhhyym${c1}Mh + .:${c2}+sydNMMMMMNNNmmmdddhhhhhhmM${c1}my + /m${c2}MMMMMMNNNmmmdddhhhhhmMNh${c1}s: + `o${c2}NMMMMMMMNNNmmmddddhhdmMNhs${c1}+` + `s${c2}NMMMMMMMMNNNmmmdddddmNMmhs${c1}/. + /N${c2}MMMMMMMMNNNNmmmdddmNMNdso${c1}:` ++M${c2}MMMMMMNNNNNmmmmdmNMNdso${c1}/- +yM${c2}MNNNNNNNmmmmmNNMmhs+/${c1}-` +/h${c2}MMNNNNNNNNMNdhs++/${c1}-` +`/${c2}ohdmmddhys+++/:${c1}.` + `-//////:--. EOF ;; From 15fb8cdc5941cf3973603d4ffff9a893611c8cf9 Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Thu, 3 May 2018 14:43:28 +1000 Subject: [PATCH 10/25] general: Start inlining ascii. --- neofetch | 458 +++++++++++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 432 insertions(+), 26 deletions(-) diff --git a/neofetch b/neofetch index 6e721c7d..cfc29ca4 100755 --- a/neofetch +++ b/neofetch @@ -5357,189 +5357,595 @@ EOF "gNewSense"*) set_colors 4 5 7 6 read -rd '' ascii_data <<'EOF' - +${c1} ..,,,,.. + .oocchhhhhhhhhhccoo. + .ochhlllllllc hhhhhh ollllllhhco. + ochlllllllllll hhhllllllhhh lllllllllllhco + .cllllllllllllll hlllllo +hllh llllllllllllllc. +ollllllllllhco'' hlllllo +hllh ``ochllllllllllo +hllllllllc' hllllllllllllh `cllllllllh +ollllllh +llllllllllll+ hllllllo + `cllllh. ohllllllho .hllllc' + ochllc. ++++ .cllhco + `+occooo+. .+ooocco+' + `+oo++++ ++++oo+' EOF ;; "GNU") set_colors fg 7 read -rd '' ascii_data <<'EOF' - +${c1} _-`````-, ,- '- . + .' .- - | | - -. `. + /.' / `. \ +:/ : _... ..._ `` : +:: : /._ .`:'_.._\. || : +:: `._ ./ ,` : \ . _.'' . +`:. / | -. \-. \\_ / + \:._ _/ .' .@) \@) ` `\ ,.' + _/,--' .- .\,-.`--`. + ,'/'' (( \ ` ) + /'/' \ `-' ( + '/'' `._,-----' + ''/' .,---' + ''/' ;: + ''/'' ''/ + ''/''/'' + '/'/' + `; EOF ;; "GoboLinux"*) set_colors 5 4 6 2 read -rd '' ascii_data <<'EOF' - +${c1}_____ _ +/ ____| | | +| | __ ___ | |__ ___ +| | |_ |/ _ \| '_ \ / _ \ +| |__| | (_) | |_) | (_) | + \_____|\___/|_.__/ \___/ EOF ;; "Grombyang"*) set_colors 4 2 1 read -rd '' ascii_data <<'EOF' - +${c1} eeeeeeeeeeee + eeeeeeeeeeeeeeeee + eeeeeeeeeeeeeeeeeeeeeee + eeeee ${c2}.o+ ${c1}eeee + eeee ${c2}`ooo/ ${c1}eeee + eeee ${c2}`+oooo: ${c1}eeee +eee ${c2}`+oooooo: ${c1}eee +eee ${c2}-+oooooo+: ${c1}eee +ee ${c2}`/:oooooooo+: ${c1}ee +ee ${c2}`/+ +++ +: ${c1}ee +ee ${c2}+o+\ ${c1}ee +eee ${c2}+o+\ ${c1}eee +eee ${c2}// \\ooo/ \\\ ${c1}eee + eee ${c2}//++++oooo++++\\\ ${c1}eee + eeee ${c2}::::++oooo+::::: ${c1}eeee + eeeee ${c3}Grombyang OS ${c1} eeee + eeeeeeeeeeeeeeeeeeeeeee + eeeeeeeeeeeeeeeee EOF ;; "GuixSD"*) set_colors 3 7 6 1 8 read -rd '' ascii_data <<'EOF' - +${c1} .. `. + `--..```..` `..```..--` + .-:///-:::. `-:::///:-. + ````.:::` `:::.```` + -//:` -::- + ://: -::- + `///- .:::` + -+++-:::. + :+/:::- + `-....` EOF ;; "Haiku"*) set_colors 2 8 read -rd '' ascii_data <<'EOF' - +${c2} :dc' + 'l:;'${c1},${c2}'ck. .;dc:. + co ${c1}..${c2}k. .;; ':o. + co ${c1}..${c2}k. ol ${c1}.${c2}0. + co ${c1}..${c2}k. oc ${c1}..${c2}0. + co ${c1}..${c2}k. oc ${c1}..${c2}0. +.Ol,. co ${c1}...''${c2}Oc;kkodxOdddOoc,. + ';lxxlxOdxkxk0kd${c1}oooll${c2}dl${c1}ccc:${c2}clxd; + ..${c1}oOolllllccccccc:::::${c2}od; + cx:ooc${c1}:::::::;${c2}cooolcX. + cd${c1}.${c2}''cloxdoollc' ${c1}...${c2}0. + cd${c1}......${c2}k;${c1}.${c2}xl${c1}.... .${c2}0. + .::c${c1};..${c2}cx;${c1}.${c2}xo${c1}..... .${c2}0. + '::c'${c1}...${c2}do${c1}..... .${c2}K, + cd,.${c1}....:${c2}O,${c1} + ':clod:'${c1} + ${c1} EOF ;; "Hyperbola"*) set_colors 8 read -rd '' ascii_data <<'EOF' - +${c1} WW + KX W + WO0W NX0O + NOO0NW WNXK0OOKW + W0OOOOOOOOOOOOKN + N0OOOOOOO0KXW + WNXXXNW + NXK00000KN + WNK0OOOOOOOOOO0W + NK0OOOOOOOOOOOOOO0W + X0OOOOOOO00KK00OOOOOK + X0OOOO0KNWW WX0OO0W + X0OO0XNW KOOW + N00KNW KOW + NKXN W0W +WW W EOF ;; "Kali"*) set_colors 4 8 read -rd '' ascii_data <<'EOF' - +${c1}.............. + ..,;:ccc,. + ......''';lxO. +.....''''..........,:ld; + .';;;:::;,,.x, + ..'''. 0Xxoc:,. ... + .... ,ONkc;,;cokOdc',. + . OMo ':${c2}dd${c1}o. + dMc :OO; + 0M. .:o. + ;Wd + ;XO, + ,d0Odlc;,.. + ..',;:cdOOd::,. + .:d;.':;. + 'd, .' + ;l .. + .o + c + .' + . EOF ;; "KaOS"*) set_colors 4 7 1 read -rd '' ascii_data <<'EOF' - +${c1} .. + ..... ..OSSAAAAAAA.. + .KKKKSS. .SSAAAAAAAAAAA. +.KKKKKSO. .SAAAAAAAAAA... +KKKKKKS. .OAAAAAAAA. +KKKKKKS. .OAAAAAA. +KKKKKKS. .SSAA.. +.KKKKKS..OAAAAAAAAAAAA........ + DKKKKO.=AA=========A===AASSSO.. + AKKKS.==========AASSSSAAAAAASS. + .=KKO..========ASS.....SSSSASSSS. + .KK. .ASS..O.. =SSSSAOSS: + .OK. .ASSSSSSSO...=A.SSA. + .K ..SSSASSSS.. ..SSA. + .SSS.AAKAKSSKA. + .SSS....S.. EOF ;; "KDE"*) set_colors 2 7 read -rd '' ascii_data <<'EOF' - +${c1} `..---+/---..` + `---.`` `` `.---.` + .--.` `` `-:-. + `:/: `.----//----.` :/- + .:. `---` `--.` .:` + .:` `--` .:- `:. + `/ `:. `.-::-.` -:` `/` + /. /. `:++++++++:` .: .: +`/ .: `+++++++++++/ /` `+` +/+` -- .++++++++++++` :. .+: +`/ .: `+++++++++++/ /` `+` + /` /. `:++++++++:` .: .: + ./ `:. `.:::-.` -:` `/` + .:` `--` .:- `:. + .:. `---` `--.` .:` + `:/: `.----//----.` :/- + .-:.` `` `-:-. + `---.`` `` `.---.` + `..---+/---..` EOF ;; "Kogaion"*) set_colors 4 7 1 read -rd '' ascii_data <<'EOF' - +${c1} ;; ,; + ;;; ,;; + ,;;;; ;;;; + ,;;;;;;;; ;;;; + ;;;;;;;;;;; ;;;;; + ,;;;;;;;;;;;; ';;;;;, + ;;;;;;;;;;;;;;, ';;;;;;; + ;;;;;;;;;;;;;;;;;, ';;;;; +; ';;;;;;;;;;;;;;;;;;, ;;; +;;;, ';;;;;;;;;;;;;;;;;;;,;; +;;;;;, ';;;;;;;;;;;;;;;;;;, +;;;;;;;;, ';;;;;;;;;;;;;;;;, +;;;;;;;;;;;;, ';;;;;;;;;;;;;; +';;;;;;;;;;;;; ';;;;;;;;;;;;; + ';;;;;;;;;;;;;, ';;;;;;;;;;; + ';;;;;;;;;;;;; ;;;;;;;;;; + ';;;;;;;;;;;; ;;;;;;;; + ';;;;;;;; ;;;;;; + ';;;;; ;;;; + ';;; ;; EOF ;; "Korora"*) set_colors 4 7 1 read -rd '' ascii_data <<'EOF' - +${c2} ____________ + _add55555555554${c1}: + _w?'${c1}``````````'${c2})k${c1}: + _Z'${c1}`${c2} ]k${c1}: + m(${c1}`${c2} )k${c1}: + _.ss${c1}`${c2}m[${c1}`${c2}, ]e${c1}: + .uY"^`${c1}`${c2}Xc${c1}`${c2}?Ss. d(${c1}` + jF'${c1}`${c2} `@. ${c1}`${c2}Sc .jr${c1}` + jr${c1}`${c2} `?n_ ${c1}`${c2}$; _a2"${c1}` +.m${c1}:${c2} `~M${c1}`${c2}1k${c1}`${c2}5?!`${c1}` +:#${c1}:${c2} ${c1}`${c2})e${c1}``` +:m${c1}:${c2} ,#'${c1}` +:#${c1}:${c2} .s2'${c1}` +:m,________.aa7^${c1}` +:#baaaaaaas!J'${c1}` + ``````````` EOF ;; "KSLinux"*) set_colors 4 7 1 read -rd '' ascii_data <<'EOF' +${c1} K K U U RRRR ooo + K K U U R R o o + KKK U U RRRR o o + K K U U R R o o + K K UUU R R ooo +${c2} SSS AAA W W AAA + S A A W W A A + SSS AAAAA W W W AAAAA + S A A WW WW A A + SSS A A W W A A EOF ;; "Kubuntu"*) set_colors 4 7 1 read -rd '' ascii_data <<'EOF' - +${c1} `.:/ossyyyysso/:. + .:oyyyyyyyyyyyyyyyyyyo:` + -oyyyyyyyo${c2}dMMy${c1}yyyyyyysyyyyo- + -syyyyyyyyyy${c2}dMMy${c1}oyyyy${c2}dmMMy${c1}yyyys- + oyyys${c2}dMy${c1}syyyy${c2}dMMMMMMMMMMMMMy${c1}yyyyyyo + `oyyyy${c2}dMMMMy${c1}syysoooooo${c2}dMMMMy${c1}yyyyyyyyo` + oyyyyyy${c2}dMMMMy${c1}yyyyyyyyyyys${c2}dMMy${c1}sssssyyyo +-yyyyyyyy${c2}dMy${c1}syyyyyyyyyyyyyys${c2}dMMMMMy${c1}syyy- +oyyyysoo${c2}dMy${c1}yyyyyyyyyyyyyyyyyy${c2}dMMMMy${c1}syyyo +yyys${c2}dMMMMMy${c1}yyyyyyyyyyyyyyyyyysosyyyyyyyy +yyys${c2}dMMMMMy${c1}yyyyyyyyyyyyyyyyyyyyyyyyyyyyy +oyyyyysos${c2}dy${c1}yyyyyyyyyyyyyyyyyy${c2}dMMMMy${c1}syyyo +-yyyyyyyy${c2}dMy${c1}syyyyyyyyyyyyyys${c2}dMMMMMy${c1}syyy- + oyyyyyy${c2}dMMMy${c1}syyyyyyyyyyys${c2}dMMy${c1}oyyyoyyyo + `oyyyy${c2}dMMMy${c1}syyyoooooo${c2}dMMMMy${c1}oyyyyyyyyo + oyyysyyoyyyys${c2}dMMMMMMMMMMMy${c1}yyyyyyyo + -syyyyyyyyy${c2}dMMMy${c1}syyy${c2}dMMMy${c1}syyyys- + -oyyyyyyy${c2}dMMy${c1}yyyyyysosyyyyo- + ./oyyyyyyyyyyyyyyyyyyo/. + `.:/oosyyyysso/:.` EOF ;; "LEDE"*) set_colors 4 7 1 read -rd '' ascii_data <<'EOF' - + ${c1} _________ + / /\ + / LE / \ + / DE / \ + /________/ LE \ + \ \ DE / + \ LE \ / + \ DE \ / + \________\/ EOF ;; "Linux") set_colors fg 8 3 read -rd '' ascii_data <<'EOF' - +${c2} ##### +${c2} ####### +${c2} ##${c1}O${c2}#${c1}O${c2}## +${c2} #${c3}#####${c2}# +${c2} ##${c1}##${c3}###${c1}##${c2}## +${c2} #${c1}##########${c2}## +${c2} #${c1}############${c2}## +${c2} #${c1}############${c2}### +${c3} ##${c2}#${c1}###########${c2}##${c3}# +${c3}######${c2}#${c1}#######${c2}#${c3}###### +${c3}#######${c2}#${c1}#####${c2}#${c3}####### +${c3} #####${c2}#######${c3}##### EOF ;; "LMDE"*) set_colors 2 7 read -rd '' ascii_data <<'EOF' - + ${c2}`.-::---.. +${c1} .:++++ooooosssoo:. + .+o++::. `.:oos+. +${c1} :oo:.` -+oo${c2}: +${c1} ${c2}`${c1}+o/` .${c2}::::::${c1}-. .++-${c2}` +${c1}${c2}`${c1}/s/ .yyyyyyyyyyo: +o-${c2}` +${c1}${c2}`${c1}so .ss ohyo` :s-${c2}: +${c1}${c2}`${c1}s/ .ss h m myy/ /s`${c2}` +${c1}`s: `oo s m Myy+-o:` +`oo :+sdoohyoydyso/. + :o. .:////////++: +${c1} `/++ ${c2}-:::::- +${c1} ${c2}`${c1}++- +${c1} ${c2}`${c1}/+- +${c1} ${c2}.${c1}+/. +${c1} ${c2}.${c1}:+-. + `--.`` EOF ;; "Lubuntu"*) set_colors 4 7 1 read -rd '' ascii_data <<'EOF' - +${c1} `-/+oyyhhhhyyo+/-` + ./shhhhhhhhhhhhhhhhhhs/. + `:shhhhhhhhhhhhhhhhhhhhhhhhs:` + :yhhhhhhhhhhhhhhhs++yhhhhhhhhhy: + `ohhhhhhhhhhhhhs+:. .yhhhhhhhhhhhho` + `shhhhhhhhhhy+:` /yhhhhhhhhhhhhhs` + shhhhhhhhy+. .ohhhhhhhhhhhhhs +:hhhhhhy/. /hhhhhhhhhhhhh: +shhhy/. :hhhhhhhhhhhhs +hy+. ` `+yhs/` +hhhhhhhhhhhh +-.:/oshy- ` :yhhhhhy/ shhhhhhhhhhh +shhhhhy-`/s. .shhhhhhhhho` .hhhhhhhhhhs +:hhhho`:ys` /yhhhhhhhhhhhs` +hhhhhhhhh: + shh/.sh+ `ohhhhhhhhhhhhhhs` .hhhhhhhhs + `o-+hh: :yhhhhhhhhhhhhhhhho ohhhhhhs` + +hy-`ohhhhhhhhhhhhhhhhhhh+ -hhhhho` + :.-yhhhhhhhhhhhhhhhhhhhhh: yhhy: + :shhhhhhhhhhhhhhhhhhhhhy`+s:` + .+shhhhhhhhhhhhhhhhhhs:` + `-/+oyyhhhhyys+/-` EOF ;; "Lunar"*) set_colors 4 7 3 read -rd '' ascii_data <<'EOF' - +${c1}`-. `-. + -ohys/-` `:+shy/` + -omNNdyo/` :+shmNNy/` + ${c3} - + /mMmo + hMMMN` + .NMMs + ${c1} -:+oooo+//: ${c3}/MN${c1}. -///oooo+/-` + /:.` ${c3}/${c1} `.:/` +${c3} __ + | | _ _ ___ ___ ___ + | |__| | | | .'| _| + |_____|___|_|_|__,|_| EOF ;; "mac"*"_small") set_colors 2 3 1 5 4 read -rd '' ascii_data <<'EOF' - +${c1} .:' + _ :'_ +${c2} .'`_`-'_``. +:________.-' +${c3}:_______: +:_______: +${c4} :_______`-; +${c5} `._.-._.' EOF ;; "mac" | "Darwin") set_colors 2 3 1 1 5 4 read -rd '' ascii_data <<'EOF' - +${c1} 'c. + ,xNMM. + .OMMMMo + OMMM0, + .;loddo:' loolloddol;. + cKMMMMMMMMMMNWMMMMMMMMMM0: +${c2} .KMMMMMMMMMMMMMMMMMMMMMMMWd. + XMMMMMMMMMMMMMMMMMMMMMMMX. +${c3};MMMMMMMMMMMMMMMMMMMMMMMM: +:MMMMMMMMMMMMMMMMMMMMMMMM: +${c4}.MMMMMMMMMMMMMMMMMMMMMMMMX. + kMMMMMMMMMMMMMMMMMMMMMMMMWd. + ${c5}.XMMMMMMMMMMMMMMMMMMMMMMMMMMk + .XMMMMMMMMMMMMMMMMMMMMMMMMK. + ${c6}kMMMMMMMMMMMMMMMMMMMMMMd + ;KMMMMMMMWXXWMMMMMMMk. + .cooc,. .,coo:. EOF ;; "Mageia"*) set_colors 6 7 read -rd '' ascii_data <<'EOF' - +${c1} .°°. + °° .°°. + .°°°. °° + . . + °°° .°°°. + .°°°. '___' +${c2} .${c1}'___' ${c2} . + :dkxc;'. ..,cxkd; + .dkk. kkkkkkkkkk .kkd. +.dkk. ';cloolc;. .kkd +ckk. .kk; +xO: cOd +xO: lOd +lOO. .OO: +.k00. .00x + .k00; ;00O. + .lO0Kc;,,,,,,;c0KOc. + ;d00KKKKKK00d; + .,KKKK,. EOF ;; "MagpieOS"*) set_colors 2 1 3 5 read -rd '' ascii_data <<'EOF' - +${c1} ;00000 :000Ol + .x00kk00: O0kk00k; + l00: :00. o0k :O0k. + .k0k. x${c2}d$dddd${c1}k' .d00; + k0k. ${c2}.dddddl ${c1}o00, + o00. ${c2}':cc:. ${c1}d0O +.00l ,00. +l00. d0x +k0O .:k0o +O0k ;dO0000d. +k0O .O0O${c2}xxxxk${c1}00: +o00. k0O${c2}dddddd${c1}occ +'00l x0O${c2}dddddo${c3};..${c1} + x00. .x00${c2}kxxd${c3}:..${c1} + .O0x .:oxxx${c4}Okl.${c1} + .x0d ${c4},xx,${c1} + .:o. ${c4}.xd ckd${c1} + .. ${c4}dxl .xx; + :xxolldxd' + ;oxdl. EOF ;; "Manjaro"*) set_colors 2 7 read -rd '' ascii_data <<'EOF' - +${c1}██████████████████ ████████ +██████████████████ ████████ +██████████████████ ████████ +██████████████████ ████████ +████████ ████████ +████████ ████████ ████████ +████████ ████████ ████████ +████████ ████████ ████████ +████████ ████████ ████████ +████████ ████████ ████████ +████████ ████████ ████████ +████████ ████████ ████████ +████████ ████████ ████████ +████████ ████████ ████████ EOF ;; "Maui"*) set_colors 6 7 read -rd '' ascii_data <<'EOF' - +${c1} `.-://////:--` + .:/oooooooooooooooo+:. + `:+ooooooooooooooooooooooo:` + `:oooooooooooooooooooooooooooo/` + ..```-oooooo/-`` `:oooooo+:.` `-- + :. +oo+-` /ooo/` -/ + -o. `o+- +o/` -o: +`oo` ::` :o/ `+. .+o` /oo. +/o+ . -+oo- ` /oo/ `ooo/ ++o- /ooo+` .+ooo. :ooo+ +++ .+oooo: -oooo+ `oooo+ +:. .oooooo` :ooooo- :oooo: +` .oooooo: :ooooo+ `ooo+-` + .+oooooo` -oooooo: `o/- + +oooooo: .ooooooo. + /ooooooo` /ooooooo/ .. + `:oooooooo/:::/ooooooooo+:--:/:` + `:+oooooooooooooooooooooo+:` + .:+oooooooooooooooo+:. + `.-://////:-.` EOF ;; "Mer"*) set_colors 4 7 1 read -rd '' ascii_data <<'EOF' - +${c1} dMs + .-` + `y`-o+` + ``NMMy + .--`:++. + .hNNNNs + /MMMMMN + `ommmd/ +/ + ```` +/ + `:+sssso/-` + .-::. `-::-` `smNMNmdmNMNd/ .://-` +.ymNMNNdmNMMNm+` -dMMh:.....+dMMs `sNNMMNo +dMN+::NMMy::hMM+ mMMo `ohhy/ `dMM+ yMMy::- +MMm yMM- :MMs NMN` `:::::--sMMh dMM` +MMm yMM- -MMs mMM+ `ymmdsymMMMs dMM` +NNd sNN- -NNs -mMNs-.--..:dMMh` dNN +--- .--` `--. .smMMmdddmMNdo` .-- + ./ohddds+:` + +h- `.:-. + ./`.dMMMN+ + +MMMMMd + `+dmmy- + ``` .+` + .dMNo-y. + `hmm/ + .:` + dMs EOF ;; "Minix"*) set_colors 1 7 3 read -rd '' ascii_data <<'EOF' - +${c2} -sdhyo+:-` -/syymm: + sdyooymmNNy. `` .smNmmdysNd + odyoso+syNNmysoyhhdhsoomNmm+/osdm/ + :hhy+-/syNNmddhddddddmNMNo:sdNd: + `smNNdNmmNmddddddddddmmmmmmmy` + `ohhhhdddddmmNNdmddNmNNmdddddmdh- + odNNNmdyo/:/-/hNddNy-`..-+ydNNNmd: + `+mNho:` smmd/ sNNh :dmms` -+ymmo. +-od/ -m${c1}mm${c2}mo -NN+ +m${c1}mm${c2}m- yms: ++sms -.` :so: .NN+ :os/ .-`mNh: +.-hyh+:////- -sNNd:` .--://ohNs- + `:hNNNNNNNMMd/sNMmhsdMMh/ymmNNNmmNNy/ + -+sNNNNMMNNNsmNMo: :NNmymNNNNMMMms: + //oydNMMMMydMMNysNMMmsMMMMMNyo/` + ../-yNMMy--/::/-.sMMmos+.` + -+oyhNsooo+omy/``` + `::ohdmds-` EOF ;; From 3dd7b0a7d631ead79773851ecd55b430e1ee1fda Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Thu, 3 May 2018 14:48:02 +1000 Subject: [PATCH 11/25] general: Start inlining ascii. --- neofetch | 631 ++++++++++++++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 599 insertions(+), 32 deletions(-) diff --git a/neofetch b/neofetch index cfc29ca4..909bd098 100755 --- a/neofetch +++ b/neofetch @@ -5952,231 +5952,798 @@ EOF "Linux Mint"* | "LinuxMint"*) set_colors 2 7 read -rd '' ascii_data <<'EOF' - +${c1}MMMMMMMMMMMMMMMMMMMMMMMMMmds+. +MMm----::-://////////////oymNMd+` +MMd ${c2}/++ ${c1}-sNMd: +MMNso/` ${c2}dMM `.::-. .-::.` ${c1}.hMN: +ddddMMh ${c2}dMM :hNMNMNhNMNMNh: ${c1}`NMm + NMm ${c2}dMM .NMN/-+MMM+-/NMN` ${c1}dMM + NMm ${c2}dMM -MMm `MMM dMM. ${c1}dMM + NMm ${c2}dMM -MMm `MMM dMM. ${c1}dMM + NMm ${c2}dMM .mmd `mmm yMM. ${c1}dMM + NMm ${c2}dMM` ..` ... ydm. ${c1}dMM + hMM- ${c2}+MMd/-------...-:sdds ${c1}dMM + -NMm- ${c2}:hNMNNNmdddddddddy/` ${c1}dMM + -dMNs-${c2}``-::::-------.`` ${c1}dMM + `/dMNmy+/:-------------:/yMMM + ./ydNMMMMMMMMMMMMMMMMMMMMM + .MMMMMMMMMMMMMMMMMMM EOF ;; "MX"*) set_colors 4 6 7 read -rd '' ascii_data <<'EOF' - +${c3}MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMNMMMMMMMMM +MMMMMMMMMMNs..yMMMMMMMMMMMMMm: +NMMMMMMM +MMMMMMMMMN+ :mMMMMMMMMMNo` -dMMMMMMMM +MMMMMMMMMMMs. `oNMMMMMMh- `sNMMMMMMMMM +MMMMMMMMMMMMN/ -hMMMN+ :dMMMMMMMMMMM +MMMMMMMMMMMMMMh- +ms. .sMMMMMMMMMMMMM +MMMMMMMMMMMMMMMN+` ` +NMMMMMMMMMMMMMM +MMMMMMMMMMMMMMNMMd: .dMMMMMMMMMMMMMMM +MMMMMMMMMMMMm/-hMd- `sNMMMMMMMMMMMMM +MMMMMMMMMMNo` -` :h/ -dMMMMMMMMMMMM +MMMMMMMMMd: /NMMh- `+NMMMMMMMMMM +MMMMMMMNo` :mMMN+` `-hMMMMMMMM +MMMMMMh. `oNMMd: `/mMMMMMM +MMMMm/ -hMd- `sNMMMM +MMNs` - :dMMM +Mm: `oMM +MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM EOF ;; "NetBSD"*) set_colors 5 7 read -rd '' ascii_data <<'EOF' - +${c1} `-/oshdmNMNdhyo+:-` +${c2}y${c1}/s+:-`` `.-:+oydNMMMMNhs/-`` +${c2}-m+${c1}NMMMMMMMMMMMMMMMMMMMNdhmNMMMmdhs+/-` + ${c2}-m+${c1}NMMMMMMMMMMMMMMMMMMMMmy+:` + ${c2}-N/${c1}dMMMMMMMMMMMMMMMds:` + ${c2}-N/${c1}hMMMMMMMMMmho:` + ${c2}-N/${c1}-:/++/:.` +${c2} :M+ + :Mo + :Ms + :Ms + :Ms + :Ms + :Ms + :Ms + :Ms + :Ms EOF ;; "Netrunner"*) set_colors 4 7 1 read -rd '' ascii_data <<'EOF' - +${c1} .:oydmMMMMMMmdyo:` + -smMMMMMMMMMMMMMMMMMMds- + +mMMMMMMMMMMMMMMMMMMMMMMMMd+ + /mMMMMMMMMMMMMMMMMMMMMMMMMMMMMm/ + `hMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMy` + .mMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMd` + dMMMMMMMMMMMMMMMMMMMMMMNdhmMMMMMMMMMMh ++MMMMMMMMMMMMMNmhyo+/-. -MMMMMMMMMMMM/ +mMMMMMMMMd+:.` `mMMMMMMMMMMMMd +MMMMMMMMMMMdy/. yMMMMMMMMMMMMMM +MMMMMMMMMMMMMMMNh+` +MMMMMMMMMMMMMMM +mMMMMMMMMMMMMMMMMMs -NMMMMMMMMMMMMMMd ++MMMMMMMMMMMMMMMMMN. `mMMMMMMMMMMMMMMM/ + dMMMMMMMMMMMMMMMMMy hMMMMMMMMMMMMMMMh + `dMMMMMMMMMMMMMMMMM-+MMMMMMMMMMMMMMMd` + `hMMMMMMMMMMMMMMMMmMMMMMMMMMMMMMMMy + /mMMMMMMMMMMMMMMMMMMMMMMMMMMMMm: + +dMMMMMMMMMMMMMMMMMMMMMMMMd/ + -odMMMMMMMMMMMMMMMMMMdo- + `:+ydmNMMMMNmhy+-` EOF ;; "Nitrux"*) set_colors 4 read -rd '' ascii_data <<'EOF' - +${c1}`:/. +`/yo +`/yo +`/yo .+:. +`/yo .sys+:.` +`/yo `-/sys+:.` +`/yo ./sss+:.` +`/yo .:oss+:-` +`/yo ./o///:-` +`/yo `.-:///////:` +`/yo `.://///++//-`` +`/yo `.-:////++++/-` +`/yo `-://///++o+/-` +`/yo `-/+o+++ooo+/-` +`/s+:+oooossso/.` +`//+sssssso:. +`+syyyy+:` +:+s+- EOF ;; "nixos_small") set_colors 4 6 read -rd '' ascii_data <<'EOF' - + ${c1}\\\\ \\\\ // + ==\\\\__\\\\/ // + // \\\\// +==// //== + //\\\\___// +// /\\\\ \\\\== + // \\\\ \\\\ EOF ;; "NixOS"*) set_colors 4 6 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}.. ${c1}::::: +${c2} .::::: ${c1}.::: ${c1}::::: +${c2} .::::: ${c1}::::: ${c1}''''' ${c2}..... + ::::: ${c1}':::::. ${c2}......:::::::::::::' + ::: ${c1}::::::. ${c2}':::::::::::::::::' +${c1} .:::::::: ${c2}':::::::::: +${c1} .::::''::::. ${c2}'::::. +${c1} .::::' ::::. ${c2}'::::. +${c1} .:::: :::: ${c2}'::::. EOF ;; "Nurunner"*) set_colors 4 read -rd '' ascii_data <<'EOF' - +${c1} ,xc + ;00cxXl + ;K0, .xNo. + :KO' .lXx. + cXk. ;xl cXk. + cXk. ;k:.,xo. cXk. + .lXx. :x::0MNl,dd. :KO, + .xNx. cx;:KMMMMMNo'dx. ;KK; + .dNl. cd,cXMMMMMMMMMWd,ox' 'OK: +;WK. 'K,.KMMMMMMMMMMMMMWc.Kx lMO + 'OK: 'dl'xWMMMMMMMMMM0::x: 'OK: + .kNo .xo'xWMMMMMM0;:O: ;KK; + .dXd. .do,oNMMO;ck: ;00, + oNd. .dx,;'cO; ;K0, + oNx. okk; ;K0, + lXx. :KO' + cKk' cXk. + ;00:lXx. + ,kd. EOF ;; "NuTyX"*) set_colors 4 1 read -rd '' ascii_data <<'EOF' - +${c1} . + . + ... + ... + .... .........--. + ..-++-----....--++++++---. + .-++++++-. .-++++++++++++-----.. + .--... .++..-+++--.....-++++++++++--.. + . .-+-. .**- .... ..-+----.. + .+++. .*+. + -++-----. + .+++++- ++. .*+. .....-+++-----. + -+++-++. .+. .-+***++***++--++++. . + -+-. -- -. -*- ...... ..--. +.-. .+- . -+. +. .+- +. + -- -- + -+----. .- + -++-.+. . + .++. -- + +. ----. + . .+. .. + - . + . EOF ;; "OBRevenge"*) set_colors 1 7 3 read -rd '' ascii_data <<'EOF' - +${c1} __ __ + _@@@@ @@@g_ + _@@@@@@ @@@@@@ + _@@@@@@M W@@@@@@_ + j@@@@P ^W@@@@ + @@@@L____ _____Q@@@@ +Q@@@@@@@@@@j@@@@@@@@@@ +@@@@@ T@j@ T@@@@@ +@@@@@ ___Q@J@ _@@@@@ +@@@@@fMMM@@j@jggg@@@@@@ +@@@@@ j@j@^MW@P @@@@ +Q@@@@@ggg@@f@ @@@@@@L +^@@@@WWMMP ^ Q@@@@ + @@@@@_ _@@@@l + W@@@@@g_____g@@@@@P + @@@@@@@@@@@@@@@@l + ^W@@@@@@@@@@@P + ^TMMMMTll EOF ;; "openbsd_small") set_colors 3 7 6 1 8 read -rd '' ascii_data <<'EOF' - +${c1} _____ + \\- -/ + \\_/ \\ + | ${c2}O O${c1} | + |_ < ) 3 ) + / \\ / + /-_____-\\ EOF ;; "OpenBSD"*) set_colors 3 7 6 1 8 read -rd '' ascii_data <<'EOF' - + ${c3} _ + (_) +${c1} | . +${c1} . |L /| . ${c3} _ +${c1} _ . |\ _| \--+._/| . ${c3}(_) +${c1} / ||\| Y J ) / |/| ./ + J |)'( | ` F`.'/ ${c3} _ +${c1} -<| F __ .-< ${c3}(_) +${c1} | / .-'${c3}. ${c1}`. /${c3}-. ${c1}L___ + J \\ < ${c3}\ ${c1} | | ${c5}O${c3}\\${c1}|.-' ${c3} _ +${c1} _J \\ .- \\${c3}/ ${c5}O ${c3}| ${c1}| \\ |${c1}F ${c3}(_) +${c1} '-F -<_. \\ .-' `-' L__ +__J _ _. >-' ${c1})${c4}._. ${c1}|-' +${c1} `-|.' /_. ${c4}\_| ${c1} F + /.- . _.< + /' /.' .' `\\ + /L /' |/ _.-'-\\ + /'J ___.---'\| + |\ .--' V | `. ` + |/`. `-. `._) + / .-.\\ + \\ ( `\\ + `.\ EOF ;; "OpenIndiana"*) set_colors 4 7 1 read -rd '' ascii_data <<'EOF' +${c2} .sy/ + .yh+ + ${c1}-+syyyo+- ${c2} /+. + ${c1}+ddo/---/sdh/ ${c2} ym- + ${c1}`hm+ `sms${c2} ym-```````.-. + ${c1}sm+ sm/ ${c2} ym- +s + ${c1}hm. /mo ${c2} ym- /h + ${c1}omo ym: ${c2} ym- `os` + ${c1}smo` .ym+ ${c2} ym- .os- + `` ${c1}:ymy+///oyms- ${c2} ym- .+s+. + ..` ${c1}`:+oo+/-` ${c2} -//oyo- + -:` .:oys/. ++- `./oyys/. +h+` `.-:+oyyyo/-` +`/ossssysso+/-.` EOF ;; "OpenMandriva"*) set_colors 4 3 read -rd '' ascii_data <<'EOF' - +${c2} `` + `-. +${c1} ` ${c2}.--- +${c1} -/ ${c2}-::--` +${c1} `++ ${c2}`----...```-:::::. +${c1} `os. ${c2}.::::::::::::::-``` ` ` +${c1} +s+ ${c2}.::::::::::::::::---...--` +${c1}-ss: ${c2}`-::::::::::::::::-.``.`` +${c1}/ss- ${c2}.::::::::::::-.`` ` +${c1}+ss: ${c2}.::::::::::::- +${c1}/sso ${c2}.::::::-::::::- +${c1}.sss/ ${c2}-:::-.` .::::: +${c1} /sss+. ${c2}..`${c1} `--` ${c2}.::: +${c1} -ossso+/:://+/-` ${c2}.:` +${c1} -/+ooo+/-. ${c2}` EOF ;; "OpenWrt"*) set_colors 4 7 1 read -rd '' ascii_data <<'EOF' - +${c1} _______ +| |.-----.-----.-----. +| - || _ | -__| | +|_______|| __|_____|__|__| + |__| + ________ __ +| | | |.----.| |_ +| | | || _|| _| +|________||__| |____| EOF ;; "Open Source Media Center"* | "osmc") set_colors 4 7 1 read -rd '' ascii_data <<'EOF' - +${c1} -+shdmNNNNmdhs+- + .+hMNho/:..``..:/ohNMh+. + :hMdo. .odMh: + -dMy- -yMd- + sMd- -dMs + hMy +. .+ yMh + yMy dMs. .sMd yMy +:Mm dMNMs` `sMNMd `mM: +yM+ dM//mNs``sNm//Md +My +mM- dM: +NNNN+ :Md -Mm +mM- dM: `oNN+ :Md -Mm +yM+ dM/+NNo` :Md +My +:Mm` dMMNs` :Md `mM: + yMy dMs` -ms yMy + hMy +. yMh + sMd- -dMs + -dMy- -yMd- + :hMdo. .odMh: + .+hMNho/:..``..:/ohNMh+. + -+shdmNNNNmdhs+- EOF ;; "Oracle"*) set_colors 1 7 3 read -rd '' ascii_data <<'EOF' - +${c1} + `-/+++++++++++++++++/-.` + `/syyyyyyyyyyyyyyyyyyyyyyys/. + :yyyyo/-...............-/oyyyy/ + /yyys- .oyyy+ +.yyyy` `syyy- +:yyyo /yyy/ +.yyyy` `syyy- + /yyys. .oyyyo + /yyyyo:-...............-:oyyyy/` + `/syyyyyyyyyyyyyyyyyyyyyyys+. + `.:/+ooooooooooooooo+/:.` EOF ;; "PacBSD"*) set_colors 1 7 3 read -rd '' ascii_data <<'EOF' - +${c1} :+sMs. + `:ddNMd- -o--` + -sMMMMh: `+N+`` + yMMMMMs` .....-/-... `mNh/ + yMMMMMmh+-`:sdmmmmmmMmmmmddy+-``./ddNMMm + yNMMNMMMMNdyyNNMMMMMMMMMMMMMMMhyshNmMMMm + :yMMMMMMMMMNdooNMMMMMMMMMMMMMMMMNmy:mMMd + +MMMMMMMMMmy:sNMMMMMMMMMMMMMMMMMMMmshs- + :hNMMMMMMN+-+MMMMMMMMMMMMMMMMMMMMMMMs. + .omysmNNhy/+yNMMMMMMMMMMNMMMMMMMMMNdNNy- + /hMM:::::/hNMMMMMMMMMMMm/-yNMMMMMMN.mMNh` +.hMMMMdhdMMMMMMMMMMMMMMmo `sMMMMMMN mMMm- +:dMMMMMMMMMMMMMMMMMMMMMdo+ oMMMMMMN`smMNo` +/dMMMMMMMMMMMMMMMMMMMMMNd/` :yMMMMMN:-hMMM. +:dMMMMMMMMMMMMMMMMMMMMMNh` oMMMMMMNo/dMNN` +:hMMMMMMMMMMMMMMMMMMMMMMNs--sMMMMMMMNNmy++` + sNMMMMMMMMMMMMMMMMMMMMMMMmmNMMMMMMNho::o. + :yMMMMMMMMMMMMMNho+sydNNNNNNNmysso/` -// + /dMMMMMMMMMMMMMs- ````````..`` + .oMMMMMMMMMMMMNs` ./y:` + +dNMMNMMMMMMMmy` ``./ys. + `/hMMMMMMMMMMMNo-`` `.+yy+-` + `-/hmNMNMMMMMMmmddddhhy/-` + `-+oooyMMMdsoo+/:. EOF ;; "Parabola"*) set_colors 5 7 read -rd '' ascii_data <<'EOF' - +${c1} `.-. `. + `.` `:++. `-+o+. + `` `:+/. `:+/. `-+oooo+ + ``-::-.:+/. `:+/. `-+oooooo+ + `.-:///- ..` .-. `-+oooooooo- + `..-..` `+ooooooooo: +`` :oooooooo/ + `ooooooo: + `oooooo: + -oooo+. + +ooo/` + -ooo- + `+o/. + /+- + //` + -. EOF ;; "Pardus"*) set_colors 3 7 6 1 8 read -rd '' ascii_data <<'EOF' - +${c1} .smNdy+- `.:/osyyso+:.` -+ydmNs. +/Md- -/ymMdmNNdhso/::/oshdNNmdMmy/. :dM/ +mN. oMdyy- -y `-dMo .Nm +.mN+` sMy hN+ -: yMs `+Nm. + `yMMddMs.dy `+` sMddMMy` + +MMMo .` . oMMM+ + `NM/ `````.` `.````` +MN` + yM+ `.-:yhomy ymohy:-.` +My + yM: yo oy :My + +Ms .N` `N. +h sM+ + `MN - -::::::- : :o:+`NM` + yM/ sh -dMMMMd- ho +y+My + .dNhsohMh-//: /mm/ ://-yMyoshNd` + `-ommNMm+:/. oo ./:+mMNmmo:` + `/o+.-somNh- :yy: -hNmos-.+o/` + ./` .s/`s+sMdd+``+ddMs+s`/s. `/. + : -y. -hNmddmNy. .y- : + -+ `..` +- EOF ;; "Parrot"*) set_colors 6 7 read -rd '' ascii_data <<'EOF' - +${c1} `:oho/-` +`mMMMMMMMMMMMNmmdhy- + dMMMMMMMMMMMMMMMMMMs` + +MMsohNMMMMMMMMMMMMMm/ + .My .+dMMMMMMMMMMMMMh. + + :NMMMMMMMMMMMMNo + `yMMMMMMMMMMMMMm: + /NMMMMMMMMMMMMMy` + .hMMMMMMMMMMMMMN+ + ``-NMMMMMMMMMd- + /MMMMMMMMMMMs` + mMMMMMMMsyNMN/ + +MMMMMMMo :sNh. + `NMMMMMMm -o/ + oMMMMMMM. + `NMMMMMM+ + +MMd/NMh + mMm -mN` + /MM `h: + dM` . + :M- + d: + -+ + - EOF ;; "Parsix"*) set_colors 3 1 7 8 read -rd '' ascii_data <<'EOF' - + ${c2}-/+/:. + ${c2}.syssssys. + ${c1}.--. ${c2}ssssssssso${c1} ..--. + :++++++: ${c2}+ssssssss+${c1} ./++/+++: + /+++++++++.${c2}.yssooooy`${c1}-+///////o- + /++++++++++.${c2}+soooos:${c1}:+////////+- + :+++++////o-${c2}oooooo-${c1}+/////////- + `-/++//++-${c4}.-----.-${c1}:+/////:- + ${c3}-://::--${c1}-:/:${c4}.--.````.--.${c1}:::-${c3}--::::::. +${c3}-/:::::::://:${c4}.:-` `-:${c3}`:/:::::::--/- +${c3}/::::::::::/-${c4}--. .-.${c3}-/://///::::/ +${c3}-/:::::::::/:${c4}`:-. .-:${c3}`:///////////- + `${c3}-::::--${c1}.-://.${c4}---....---${c1}`:+/:-${c3}--::::-` + ${c1}-/+///+o/-${c4}.----.${c1}.:oo+++o+. + ${c1}-+/////+++o:${c2}syyyyy.${c1}o+++++++++: + ${c1}.+////+++++-${c2}+sssssy+${c1}.++++++++++\ + ${c1}.+:/++++++.${c2}.yssssssy-${c1}`+++++++++: + ${c1}:/+++++- ${c2}+sssssssss ${c1}-++++++- + ${c1}`--` ${c2}+sssssssso ${c1}`--` + ${c2}+sssssy+` + ${c2}`.::-` EOF ;; "PCBSD"* | "TrueOS"*) set_colors 1 7 3 read -rd '' ascii_data <<'EOF' - +${c1} .. + s. + +y + yN + -MN `. + :NMs `m + .yMMm` `No + `-/+++sdMMMNs+-`+Ms + `:oo+-` .yMMMMy` `-+oNMh + -oo- +NMMMM/ oMMh- + .s+` ` oMMMMM/ - oMMMhy. + +s`- :: :MMMMMd -o `mMMMy`s+ + y+ h .Ny+oNMMMMMN/ sh+NMMMMo +y + s+ .ds -NMMMMMMMMMMNdhdNMMMMMMh` +s +-h .NM` `hMMMMMMMMMMMMMMNMMNy: h- +y- hMN` hMMmMMMMMMMMMNsdMNs. -y +m` mMMy` oMMNoNMMMMMMo` sMMMo `m +m` :NMMMdyydMMMMo+MdMMMs sMMMd` `m +h- `+ymMMMMMMMM--M+hMMN/ +MMMMy -h +:y `.sMMMMM/ oMM+.yMMNddNMMMMMm y: + y: `s dMMN- .MMMM/ :MMMMMMMMMMh :y + `h: `mdmMMM/ yMMMMs sMMMMMMMMN- :h` + so -NMMMN /mmd+ `dMMMMMMMm- os + :y: `yMMM` `+NMMMMMMNo`:y: + /s+`.omy /NMMMMMNh/.+s: + .+oo:-. /mdhs+::oo+. + -/o+++++++++++/- EOF ;; "PCLinuxOS"*) set_colors 4 7 1 read -rd '' ascii_data <<'EOF' - + ${c1}mhhhyyyyhhhdN + dyssyhhhhhhhhhhhssyhN + Nysyhhyo/:-.....-/oyhhhssd + Nsshhy+. `/shhysm + dohhy/ -shhsy + dohhs` /hhys +N+hho ${c2}+ssssss+- .+syhys+ ${c1}/hhsy +ohhh` ${c2}ymmo++hmm+`smmy/::+y` ${c1}shh+ ++hho ${c2}ymm- /mmy+mms ${c1}:hhod +/hh+ ${c2}ymmhhdmmh.smm/ ${c1}.hhsh ++hhs ${c2}ymm+::-` /mmy` ` ${c1}/hh+m +yyhh- ${c2}ymm- /dmdyosyd` ${c1}`yhh+ + ohhy` ${c2}://` -/+++/- ${c1}ohhom + N+hhy- `shhoh + sshho. `+hhyom + dsyhhs/. `:ohhhoy + dysyhhhso///://+syhhhssh + dhyssyhhhhhhyssyyhN + mddhdhdmN EOF ;; "Peppermint"*) set_colors 1 7 3 read -rd '' ascii_data <<'EOF' - +${c1} 8ZZZZZZ${c2}MMMMM +${c1} .ZZZZZZZZZ${c2}MMMMMMM. +${c2} MM${c1}ZZZZZZZZZ${c2}MMMMMMM${c1}ZZZZ +${c2} MMMMM${c1}ZZZZZZZZ${c2}MMMMM${c1}ZZZZZZZM +${c2} MMMMMMM${c1}ZZZZZZZ${c2}MMMM${c1}ZZZZZZZZZ. +${c2} MMMMMMMMM${c1}ZZZZZZ${c2}MMM${c1}ZZZZZZZZZZZI +${c2}MMMMMMMMMMM${c1}ZZZZZZ${c2}MM${c1}ZZZZZZZZZZ${c2}MMM +${c1}.ZZZ${c2}MMMMMMMMMM${c1}IZZ${c2}MM${c1}ZZZZZ${c2}MMMMMMMMM +${c1}ZZZZZZZ${c2}MMMMMMMM${c1}ZZ${c2}M${c1}ZZZZ${c2}MMMMMMMMMMM +${c1}ZZZZZZZZZZZZZZZZ${c2}M${c1}Z${c2}MMMMMMMMMMMMMMM +${c1}.ZZZZZZZZZZZZZ${c2}MMM${c1}Z${c2}M${c1}ZZZZZZZZZZ${c2}MMMM +${c1}.ZZZZZZZZZZZ${c2}MMM${c1}7ZZ${c2}MM${c1}ZZZZZZZZZZ7${c2}M +${c1} ZZZZZZZZZ${c2}MMMM${c1}ZZZZ${c2}MMMM${c1}ZZZZZZZ77 +${c2} MMMMMMMMMMMM${c1}ZZZZZ${c2}MMMM${c1}ZZZZZ77 +${c2} MMMMMMMMMM${c1}7ZZZZZZ${c2}MMMMM${c1}ZZ77 +${c2} .MMMMMMM${c1}ZZZZZZZZ${c2}MMMMM${c1}Z7Z +${c2} MMMMM${c1}ZZZZZZZZZ${c2}MMMMMMM +${c1} NZZZZZZZZZZZ${c2}MMMMM +${c1} ZZZZZZZZZ${c2}MM) EOF ;; "Pop!_OS"*) set_colors 6 7 read -rd '' ascii_data <<'EOF' - +${c1} ///////////// + ///////////////////// + ///////${c2}*767${c1}//////////////// + //////${c2}7676767676*${c1}////////////// + /////${c2}76767${c1}//${c2}7676767${c1}////////////// + /////${c2}767676${c1}///${c2}*76767${c1}/////////////// + ///////${c2}767676${c1}///${c2}76767${c1}.///${c2}7676*${c1}/////// +/////////${c2}767676${c1}//${c2}76767${c1}///${c2}767676${c1}//////// +//////////${c2}76767676767${c1}////${c2}76767${c1}///////// +///////////${c2}76767676${c1}//////${c2}7676${c1}////////// +////////////,${c2}7676${c1},///////${c2}767${c1}/////////// +/////////////*${c2}7676${c1}///////${c2}76${c1}//////////// +///////////////${c2}7676${c1}//////////////////// + ///////////////${c2}7676${c1}///${c2}767${c1}//////////// + //////////////////////${c2}'${c1}//////////// + //////${c2}.7676767676767676767,${c1}////// + /////${c2}767676767676767676767${c1}///// + /////////////////////////// + ///////////////////// + ///////////// EOF ;; "Porteus"*) set_colors 6 7 read -rd '' ascii_data <<'EOF' - +${c1} `.-:::-.` + -+ydmNNNNNNNmdy+- + .+dNmdhs+//////+shdmdo. + .smmy+-` ./sdy: + `omdo. `.-/+osssso+/-` `+dy. + `yms. `:shmNmdhsoo++osyyo-``oh. + hm/ .odNmds/.` ``.....:::-+s +/m: `+dNmy:` `./oyhhhhyyooo++so +ys `yNmy- .+hmmho:-.` ``` +s: yNm+` .smNd+. +`` /Nm: +dNd+` + yN+ `smNy. + dm oNNy` + hy -mNm. + +y oNNo + `y` sNN: + `: +NN: + ` .mNo + /mm` + /my` + .sy` + .+: + ` EOF ;; "PostMarketOS"*) set_colors 2 7 read -rd '' ascii_data <<'EOF' - +${c1} ss + `hMMh` + .dMMMMd. + -NMMMMMMN- + /MMMMMMMMMN/ + hMMMMMMMMMMMo + y+`mMMmdNMMMMMMy + `dMM-.-:- .mMMMMMMh` + .mMMMMMMd` `dMMMMMMm. + :NMMMMMMy yMMMMMMN: + /MMMMMMMo oMMMmdmN/ + oMMMMMMM/ /MN.-/:-. + `yMMMMMMN- -:.NMMMMy` + `dMMMMMMM- -/////////////dMMMMMMd` + -mMMMMMMMMN+`sMMMMMMMMMMMMMMMMMMMMm- + :NMMMMMMMMMMM/ yMMMMMMMMMMMMMMMMMMMMN: ++MMMMMMMMMMMh.:mMMMMMMMMMMMMMMMMMMMMMMM+ EOF ;; "Puppy"* | "Quirky Werewolf"* | "Precise Puppy"*) set_colors 4 7 read -rd '' ascii_data <<'EOF' - +${c1} `-/osyyyysosyhhhhhyys+- + -ohmNNmh+/hMMMMMMMMNNNNd+dMMMMNM+ + yMMMMNNmmddo/NMMMNNNNNNNNNo+NNNNNy +.NNNNNNmmmddds:MMNNNNNNNNNNNh:mNNN/ +-NNNdyyyhdmmmd`dNNNNNmmmmNNmdd/os/ +.Nm+shddyooo+/smNNNNmmmmNh. :mmd. + NNNNy:` ./hmmmmmmmNNNN: hNMh + NMN- -++- +NNNNNNNNNNm+..-sMMMM- +.MMo oNNNNo hNNNNNNNNmhdNNNMMMMM+ +.MMs /NNNN/ dNmhs+:-` yMMMMMMMM+ + mMM+ .. `sNN+. hMMMMhhMMM- + +MMMmo:...:sNMMMMMms:` hMMMMm.hMMy + yMMMMMMMMMMMNdMMMMMM::/+o+//dMMd` + sMMMMMMMMMMN+:oyyo:sMMMNNMMMNy` + :mMMMMMMMMMMMmddNMMMMMMMMmh/ + /dMMMMMMMMMMMMMMMMMMNdy/` + .+hNMMMMMMMMMNmdhs/. + .:/+ooo+/:-. EOF ;; "Qubes"*) set_colors 4 5 7 6 read -rd '' ascii_data <<'EOF' - +${c1} `..--..` + `.----------.` + `..----------------..` + `.------------------------.`` + `..-------------....-------------..` +.::----------..`` ``..----------:+: +:////:----..` `..---:/ossso +:///////:` `/osssssso +:///////: /ssssssso +:///////: /ssssssso +:///////: /ssssssso +:///////: /ssssssso +:///////: /ssssssso +:////////-` .:sssssssso +:///////////-.` `-/osssssssssso +`//////////////:-```.:+ssssssssssssso- + .-://////////////sssssssssssssso/-` + `.:///////////sssssssssssssso:. + .-:///////ssssssssssssssssss/` + `.:////ssss+/+ssssssssssss. + `--//- `-/osssso/. EOF ;; "Raspbian"*) set_colors 2 1 read -rd '' ascii_data <<'EOF' - +${c1} `.::///+:/-. --///+//-:`` + `+oooooooooooo: `+oooooooooooo: + /oooo++//ooooo: ooooo+//+ooooo. + `+ooooooo:-:oo- +o+::/ooooooo: + `:oooooooo+`` `.oooooooo+- + `:++ooo/. :+ooo+/.` + ${c2}...` `.----.` ``.. + .::::-``:::::::::.`-:::-` + -:::-` .:::::::-` `-:::- + `::. `.--.` `` `.---.``.::` + .::::::::` -::::::::` ` + .::` .:::::::::- `::::::::::``::. +-:::` ::::::::::. ::::::::::.`:::- +:::: -::::::::. `-:::::::: :::: +-::- .-:::-.``....``.-::-. -::- + .. `` .::::::::. `..`.. + -:::-` -::::::::::` .:::::` + :::::::` -::::::::::` :::::::. + .::::::: -::::::::. :::::::: + `-:::::` ..--.` ::::::. + `...` `...--..` `...` + .:::::::::: + `.-::::-` EOF ;; "Red Star"* | "Redstar"*) set_colors 1 7 3 read -rd '' ascii_data <<'EOF' - +${c1} .. + .oK0l + :0KKKKd. + .xKO0KKKKd + ,Od' .d0000l + .c;. .'''... ..'. +.,:cloddxxxkkkkOOOOkkkkkkkkxxxxxxxxxkkkx: +;kOOOOOOOkxOkc'...',;;;;,,,'',;;:cllc:,. + .okkkkd,.lko .......',;:cllc:;,,'''''. + .cdo. :xd' cd:. ..';'',,,'',,;;;,'. + . .ddl.;doooc'..;oc;'..';::;,'. + coo;.oooolllllllcccc:'. . + .ool''lllllccccccc:::::;. + ;lll. .':cccc:::::::;;;;' + :lcc:'',..';::::;;;;;;;,,. + :cccc::::;...';;;;;,,,,,,. + ,::::::;;;,'. ..',,,,'''. + ........ ...... EOF ;; "Redhat"* | "Red Hat"* | "rhel"*) set_colors 1 7 3 read -rd '' ascii_data <<'EOF' - +${c1} `.-..........` + `////////::.`-/. + -: ....-////////. + //:-::///////////` + `--::: `-://////////////: + //////- ``.-:///////// .` + `://////:-.` :///////::///:` + .-/////////:---/////////////: + .-://////////////////////. +${c2} yMN+`.-${c1}::///////////////-` +${c2} .-`:NMMNMs` `..-------..` + MN+/mMMMMMhoooyysshsss +MMM MMMMMMMMMMMMMMyyddMMM+ + MMMM MMMMMMMMMMMMMNdyNMMh` hyhMMM + MMMMMMMMMMMMMMMMyoNNNMMM+. MMMMMMMM + MMNMMMNNMMMMMNM+ mhsMNyyyyMNMMMMsMM EOF ;; From 21f76463ab291671faf2e4deb5a0a7eabf1a5689 Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Thu, 3 May 2018 14:52:59 +1000 Subject: [PATCH 12/25] general: Start inlining ascii. --- neofetch | 609 ++++++++++++++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 579 insertions(+), 30 deletions(-) diff --git a/neofetch b/neofetch index 909bd098..0c0a6aaa 100755 --- a/neofetch +++ b/neofetch @@ -6750,203 +6750,684 @@ EOF "Refracted Devuan"*) set_colors 8 7 read -rd '' ascii_data <<'EOF' - +${c2} A + VW + VVW\\ + .yWWW\\ + ,;,,u,;yy;;v;uyyyyyyy ,WWWWW^ + *WWWWWWWWWWWWWWWW/ $VWWWWw , + ^*%WWWWWWVWWX $WWWW** ,yy + , "**WWW/' **' ,yy/WWW*` + &WWWWwy `*` <,ywWW%VWWW* + yWWWWWWWWWW* ., "**WW%W + ,&WWWWWM*"` ,y/ &WWWww ^* + XWWX*^ ,yWWWW09 .WWWWWWWWwy, + *` &WWWWWM WWWWWWWWWWWWWww, + (WWWWW` /#####WWW*********** + ^WWWW + VWW + Wh. + V/ EOF ;; "Rosa"*) set_colors 4 7 1 read -rd '' ascii_data <<'EOF' - +${c1} ROSAROSAROSAROSAR + ROSA AROS + ROS SAROSAROSAROSAR AROS + RO ROSAROSAROSAROSAROSAR RO + ARO AROSAROSAROSARO AROS ROS + ARO ROSAROS OSAR ROSA ROS + RO AROSA ROSAROSAROSA ROSAR RO +RO ROSAR ROSAROSAROSAR R ROSARO RO +RO ROSA AROSAROSAROSA AR ROSARO AR +RO AROS ROSAROSAROSA ROS AROSARO AR +RO AROS ROSAROSARO ROSARO ROSARO AR +RO ROS AROSAROS ROSAROSA AROSAR AR +RO ROSA ROS ROSAROSAR ROSARO RO + RO ROS AROSAROSAROSA ROSARO AR + ARO ROSA ROSAROSAROS AROSAR ARO + ARO OROSA R ROSAROS ROS + RO AROSAROS AROSAROSAR RO + AROS AROSAROSAROSARO AROS + ROSA SARO + ROSAROSAROSAROSAR EOF ;; "sabotage"*) set_colors 4 7 1 read -rd '' ascii_data <<'EOF' +${c2} .|'''.| | '||''|. ..|''|| + ||.. ' ||| || || .|' || + ''|||. | || ||'''|. || || +. '|| .''''|. || || '|. || +|'....|' .|. .||. .||...|' ''|...|' +|''||''| | ..|'''.| '||''''| + || ||| .|' ' || . + || | || || .... ||''| + || .''''|. '|. || || + .||. .|. .||. ''|...'| .||.....| EOF ;; "Sabayon"*) set_colors 4 7 1 read -rd '' ascii_data <<'EOF' - +${c1} ........... + .. .. + .. .. + .. ${c2}o ${c1}.. + .. ${c2}:W' ${c1}.. + .. ${c2}.d. ${c1}.. +:. ${c2}.KNO ${c1}.: +:. ${c2}cNNN. ${c1}.: +: ${c2}dXXX, ${c1}: +: ${c2}. dXXX, .cd, ${c1}: +: ${c2}'kc .. dKKK. ,ll;:' ${c1}: +: ${c2}.xkkxc;..dkkkc',cxkkl ${c1}: +:. ${c2}.,cdddddddddddddo:. ${c1}.: + .. ${c2}:lllllll: ${c1}.. + .. ${c2}',,,,, ${c1}.. + .. .. + .. .. + ............... EOF ;; "SailfishOS"*) set_colors 4 5 7 6 read -rd '' ascii_data <<'EOF' - +${c1} .+eWWW + .+ee+++eee e. + .ee++eeeeeeee +e. + .e++ee++eeeeeee+eee+e+ + ee.e+.ee+eee++eeeeee+ + W.+e.e+.e++ee+eee + W.+e.W.ee.W++ee' + +e.W W.e+.W.W+ + W.e.+e.W W W. + e e e +e.W.W + .W W W. + W.+e.W. + W++e.ee+. + ++ +ee++eeeee++. + ' '+++e 'ee. + ee + ee + e EOF ;; "SalentOS"*) set_colors 2 1 3 7 read -rd '' ascii_data <<'EOF' - +${c1} ``..`` + .-:+oshdNMMMMMMNdhyo+:-.` + -oydmMMMMMMMMMMMMMMMMMMMMMMMMMMNdhs/ +${c4} +hdddm${c1}NMMMMMMMMMMMMMMMMMMMMMMMMN${c4}mdddh+` +${c2}`MMMMMN${c4}mdddddm${c1}MMMMMMMMMMMM${c4}mdddddm${c3}NMMMMM- +${c2} mMMMMMMMMMMMN${c4}ddddhyyhhddd${c3}NMMMMMMMMMMMM` +${c2} dMMMMMMMMMMMMMMMMM${c4}oo${c3}MMMMMMMMMMMMMMMMMN` +${c2} yMMMMMMMMMMMMMMMMM${c4}hh${c3}MMMMMMMMMMMMMMMMMd +${c2} +MMMMMMMMMMMMMMMMM${c4}hh${c3}MMMMMMMMMMMMMMMMMy +${c2} :MMMMMMMMMMMMMMMMM${c4}hh${c3}MMMMMMMMMMMMMMMMMo +${c2} .MMMMMMMMMMMMMMMMM${c4}hh${c3}MMMMMMMMMMMMMMMMM/ +${c2} `NMMMMMMMMMMMMMMMM${c4}hh${c3}MMMMMMMMMMMMMMMMM- +${c2} mMMMMMMMMMMMMMMMM${c4}hh${c3}MMMMMMMMMMMMMMMMN` +${c2} hMMMMMMMMMMMMMMMM${c4}hh${c3}MMMMMMMMMMMMMMMMm +${c2} /MMMMMMMMMMMMMMMM${c4}hh${c3}MMMMMMMMMMMMMMMMy +${c2} .+hMMMMMMMMMMMMM${c4}hh${c3}MMMMMMMMMMMMMms: +${c2} `:smMMMMMMMMM${c4}hh${c3}MMMMMMMMMNh+. +${c2} .+hMMMMMM${c4}hh${c3}MMMMMMdo: +${c2} `:smMM${c4}yy${c3}MMNy/` + ${c2}.- ${c4}`${c3}:. EOF ;; "Scientific"*) set_colors 4 7 1 read -rd '' ascii_data <<'EOF' - +${c1} =/;;/- + +: // + /; /; + -X H. +.//;;;:;;-, X= :+ .-;:=;:;#;. +M- ,=;;;#:, ,:#;;:=, ,@ +:# :#.=/++++/=.$= #= + ,#; #/:+/;,,/++:+/ ;+. + ,+/. ,;@+, ,#H;, ,/+, + ;+;;/= @. ${c3}.H${c2}#${c3}#X ${c1}-X :///+; + ;+=;;;.@, ${c2}.X${c3}M${c2}@$. ${c1}=X.//;=#/. + ,;: :@#= =$H: .+#- + ,#= #;-///==///-// =#, +;+ :#-;;;:;;;;-X- +: +@- .-;;;;M- =M/;;;-. -X + :;;::;;-. #- :+ ,-;;-;:== + ,X H. + ;/ #= + // +; + '////' EOF ;; "Siduction"*) set_colors 4 4 read -rd '' ascii_data <<'EOF' - +${c1} _aass, + jQh: =$w + QWmwawQW + )$QQQQ@( .. + _a_a. ~??^ syDY?Sa, + _mW>-<$c jWmi imm. + ]QQwayQE 4QQmgwmQQ` + ?WWQWP' -9QQQQQ@'._aas, + _a%is. .adYYs,. -"?!` aQB*~^3$c +_Qh;.nm .QWc. {QL ]QQp;..vmQ/ +"QQmmQ@ -QQQggmQP ]QQWmggmQQ( + -???" "$WQQQY` __, ?QQQQQQW! + _yZ!?q, - .yWY!!Sw, "???^ + .QQa_=qQ mQm>..vmm + $QQWQQP $QQQgmQQ@ + "???" _aa, -9WWQQWY` + _mB>~)$a -~~ + mQms_vmQ. + ]WQQQQQP + -?T??" EOF ;; "Slackware"*) set_colors 4 7 1 read -rd '' ascii_data <<'EOF' - +${c1} ::::::: + ::::::::::::::::::: + ::::::::::::::::::::::::: + ::::::::${c2}cllcccccllllllll${c1}:::::: + :::::::::${c2}lc dc${c1}::::::: + ::::::::${c2}cl clllccllll oc${c1}::::::::: + :::::::::${c2}o lc${c1}::::::::${c2}co oc${c1}:::::::::: + ::::::::::${c2}o cccclc${c1}:::::${c2}clcc${c1}:::::::::::: + :::::::::::${c2}lc cclccclc${c1}::::::::::::: +::::::::::::::${c2}lcclcc lc${c1}:::::::::::: +::::::::::${c2}cclcc${c1}:::::${c2}lccclc oc${c1}::::::::::: +::::::::::${c2}o l${c1}::::::::::${c2}l lc${c1}::::::::::: + :::::${c2}cll${c1}:${c2}o clcllcccll o${c1}::::::::::: + :::::${c2}occ${c1}:${c2}o clc${c1}::::::::::: + ::::${c2}ocl${c1}:${c2}ccslclccclclccclclc${c1}::::::::::::: + :::${c2}oclcccccccccccccllllllllllllll${c1}::::: + ::${c2}lcc1lcccccccccccccccccccccccco${c1}:::: + :::::::::::::::::::::::::::::::: + :::::::::::::::::::::::::::: + :::::::::::::::::::::: + :::::::::::: EOF ;; "SliTaz"*) set_colors 3 3 read -rd '' ascii_data <<'EOF' - +${c1} @ @( @ + @@ @@ @ @/ + @@ @@ @@ @@ + @@ %@@ @@ @@ + @@ %@@@ @@@@@. @@@@ @@ + @@@ @@@@ @@@@@@@ &@@@ @@@ + @@@@@@@ %@@@@@@@@@@@@ &@@@% @@@@@@@/ + ,@@@@@@@@@@@@@@@@@@@@@@@@@ + .@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@/ +@@@@@@. @@@@@@@@@@@@@@@@@@@@@ /@@@@@@ +@@ @@@@@ @@@@@@@@@@@@, @@@@@ @@@ +@@ @@@@. @@@@@@@@@@@@@% #@@@@ @@. +@@ ,@@ @@@@@@@@@@@@@ @@@ @@ +@ @@. @@@@@@@@@@@@@ @@@ *@ +@ @@ @@@@@@@@@@@@ @@ @ + @ @@@@@@@@@. #@ + @ ,@@@@@ @ EOF ;; "SmartOS"*) set_colors 6 7 read -rd '' ascii_data <<'EOF' - +${c1}yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy +yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy +yyyys oyyyyyyyyyyyyyyyy +yyyys yyyyyyyyy oyyyyyyyyyyyyyyyy +yyyys yyyyyyyyy oyyyyyyyyyyyyyyyy +yyyys yyyyyyyyy oyyyyyyyyyyyyyyyy +yyyys yyyyyyyyy oyyyyyyyyyyyyyyyy +yyyys yyyyyyyyyyyyyyyyyyyyyyyyyyyy +yyyyy syyyy +yyyyyyyyyyyyyyyyyyyyyyyyyyyy syyyy +yyyyyyyyyyyyyyyy syyyyyyyyy syyyy +yyyyyyyyyyyyyyyy oyyyyyyyyy syyyy +yyyyyyyyyyyyyyyy oyyyyyyyyy syyyy +yyyyyyyyyyyyyyyy syyyyyyyyy syyyy +yyyyyyyyyyyyyyyy yyyyy +yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy +yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy EOF ;; "Solus"*) set_colors 4 7 1 read -rd '' ascii_data <<'EOF' - +${c2} -``````````` + `-+/------------.` + .---:mNo---------------. + .-----yMMMy:---------------. + `------oMMMMMm/----------------` + .------/MMMMMMMN+----------------. + .------/NMMMMMMMMm-+/--------------. +`------/NMMMMMMMMMN-:mh/-------------` +.-----/NMMMMMMMMMMM:-+MMd//oso/:-----. +-----/NMMMMMMMMMMMM+--mMMMh::smMmyo:-- +----+NMMMMMMMMMMMMMo--yMMMMNo-:yMMMMd/. +.--oMMMMMMMMMMMMMMMy--yMMMMMMh:-yMMMy-` +`-sMMMMMMMMMMMMMMMMh--dMMMMMMMd:/Ny+y. +`-/+osyhhdmmNNMMMMMm-/MMMMMMMmh+/ohm+ + .------------:://+-/++++++${c1}oshddys: + -hhhhyyyyyyyyyyyhhhhddddhysssso- + `:ossssssyysssssssssssssssso:` + `:+ssssssssssssssssssss+- + `-/+ssssssssssso+/-` + `.-----..` EOF ;; "Source Mage"*) set_colors 4 7 1 read -rd '' ascii_data <<'EOF' - +${c2} :ymNMNho. +.+sdmNMMMMMMMMMMy` +.-::/yMMMMMMMMMMMm- + sMMMMMMMMMMMm/ + /NMMMMMMMMMMMMMm: + .MMMMMMMMMMMMMMMMM: + `MMMMMMMMMMMMMMMMMN. + NMMMMMMMMMMMMMMMMMd + mMMMMMMMMMMMMMMMMMMo + hhMMMMMMMMMMMMMMMMMM. + .`/MMMMMMMMMMMMMMMMMs + :mMMMMMMMMMMMMMMMN` + `sMMMMMMMMMMMMMMM+ + /NMMMMMMMMMMMMMN` + oMMMMMMMMMMMMM+ + ./sd.-hMMMMMMMMmmN` + ./+oyyyh- `MMMMMMMMMmNh + sMMMMMMMMMmmo + `NMMMMMMMMMd: + -dMMMMMMMMMo + -shmNMMms. EOF ;; "Sparky"*) set_colors 1 7 read -rd '' ascii_data <<'EOF' - +${c1} + . `-:-` + .o` .-///-` + `oo` .:/++:. + os+` -/+++:` ``.........``` + /ys+`./+++/-.-::::::----......`` + `syyo`++o+--::::-::/+++/-`` + -yyy+.+o+`:/:-:sdmmmmmmmmdy+-` +::-` :yyy/-oo.-+/`ymho++++++oyhdmdy/` +`/yy+-`.syyo`+o..o--h..osyhhddhs+//osyy/` + -ydhs+-oyy/.+o.-: ` ` :/::+ydhy+```-os- + .sdddy::syo--/:. `.:dy+-ohhho ./: + :yddds/:+oo+//:-`- /+ +hy+.shhy: `` + `:ydmmdysooooooo-.ss`/yss--oyyo + `./ossyyyyo+:-/oo:.osso- .oys + ``..-------::////.-oooo/ :so + `...----::::::::--.`/oooo: .o: + ``````` ++o+:` `:` + ./+/-` ` + `-:-. + `` EOF ;; "SteamOS"*) set_colors 5 7 read -rd '' ascii_data <<'EOF' - +${c1} .,,,,. + .,'onNMMMMMNNnn',. + .'oNMANKMMMMMMMMMMMNNn'. + .'ANMMMMMMMXKNNWWWPFFWNNMNn. + ;NNMMMMMMMMMMNWW'' ,.., 'WMMM, + ;NMMMMV+##+VNWWW' .+;'':+, 'WMW, +,VNNWP+${c2}######${c1}+WW, ${c2}+: ${c1}:+, +MMM, +'${c2}+#############, +. ,+' ${c1}+NMMM +${c2} '*#########*' '*,,*' ${c1}.+NMMMM. +${c2} `'*###*' ,.,;###${c1}+WNM, +${c2} .,;;, .;##########${c1}+W +${c2},',. '; ,+##############' + '###+. :,. .,; ,###############' + '####.. `'' .,###############' + '#####+++################' + '*##################*' + ''*##########*'' + '''''' EOF ;; "SunOS" | "Solaris") set_colors 3 7 read -rd '' ascii_data <<'EOF' - +${c1} `- ` + `-- `+- .: + .+: `++: -/+- . + `.::` -++/``:::`./+/ `.-/. + `++/-`.` ` /++:` + `` ./:` .: `..`.- +``./+/:- -+++:- + -/+` :. EOF ;; "openSUSE Tumbleweed"*) set_colors 2 7 read -rd '' ascii_data <<'EOF' - +${c2} ...... + .,cdxxxoc,. .:kKMMMNWMMMNk:. + cKMMN0OOOKWMMXo. ; ;0MWk:. .:OMMk. + ;WMK;. .lKMMNM, :NMK, .OMW; + cMW; 'WMMMN ,XMK, oMM' +.MMc ..;l. xMN: KM0 +'MM. 'NMO oMM +.MM, .kMMl xMN + KM0 .kMM0. .dl:,.. .WMd + .XM0. ,OMMK, OMMMK. .XMK + oWMO:. .;xNMMk, NNNMKl. .xWMx + :ONMMNXMMMKx; . ,xNMWKkxllox0NMWk, + ..... .:dOOXXKOxl, EOF ;; "openSUSE"* | "open SUSE"* | "SUSE"*) set_colors 2 7 read -rd '' ascii_data <<'EOF' - +${c2} .;ldkO0000Okdl;. + .;d00xl:^''''''^:ok00d;. + .d00l' 'o00d. + .d0Kd'${c1} Okxol:;,. ${c2}:O0d. + .OK${c1}KKK0kOKKKKKKKKKKOxo:, ${c2}lKO. + ,0K${c1}KKKKKKKKKKKKKKK0P^${c2},,,${c1}^dx:${c2} ;00, +.OK${c1}KKKKKKKKKKKKKKKk'${c2}.oOPPb.${c1}'0k.${c2} cKO. +:KK${c1}KKKKKKKKKKKKKKK: ${c2}kKx..dd ${c1}lKd${c2} 'OK: +dKK${c1}KKKKKKKKKOx0KKKd ${c2}^0KKKO' ${c1}kKKc${c2} dKd +dKK${c1}KKKKKKKKKK;.;oOKx,..${c2}^${c1}..;kKKK0.${c2} dKd +:KK${c1}KKKKKKKKKK0o;...^cdxxOK0O/^^' ${c2}.0K: + kKK${c1}KKKKKKKKKKKKK0x;,,......,;od ${c2}lKk + '0K${c1}KKKKKKKKKKKKKKKKKKKK00KKOo^ ${c2}c00' + 'kK${c1}KKOxddxkOO00000Okxoc;'' ${c2}.dKk' + l0Ko. .c00l' + 'l0Kk:. .;xK0l' + 'lkK0xl:;,,,,;:ldO0kl' + '^:ldxkkkkxdl:^' EOF ;; "SwagArch"*) set_colors 4 7 1 read -rd '' ascii_data <<'EOF' - +${c2} .;ldkOKXXNNNNXXK0Oxoc,. + ,lkXMMNK0OkkxkkOKWMMMMMMMMMM; + 'K0xo ..,;:c:. `'lKMMMMM0 + .lONMMMMMM' `lNMk' +${c2} ;WMMMMMMMMMO. ${c1}....::... +${c2} OMMMMMMMMMMMMKl. ${c1}.,;;;;;ccccccc, +${c2} `0MMMMMMMMMMMMMM0: ${c1}.. .ccccccc. +${c2} 'kWMMMMMMMMMMMMMNo. ${c1}.,:' .ccccccc. +${c2} `c0MMMMMMMMMMMMMN,${c1},:c; :cccccc: +${c2} ckl. `lXMMMMMMMMMX${c1}occcc:.. ;ccccccc. +${c2}dMMMMXd, `OMMMMMMWk${c1}ccc;:''` ,ccccccc: +${c2}XMMMMMMMWKkxxOWMMMMMNo${c1}ccc; .cccccccc. +${c2} `':ldxO0KXXXXXK0Okdo${c1}cccc. :cccccccc. + :ccc:' `cccccccc:, + '' EOF ;; "Tails"*) set_colors 5 7 read -rd '' ascii_data <<'EOF' - +${c1} `` + ./yhNh +syy/Nshh `:o/ +N:dsNshh █ `ohNMMd +N-/+Nshh `yMMMMd +N-yhMshh yMMMMd +N-s:hshh █ yMMMMd so//. +N-oyNsyh yMMMMd d Mms. +N:hohhhd:. yMMMMd syMMM+ +Nsyh+-..+y+- yMMMMd :mMM+ ++hy- -ss/`yMMMM `+d+ + :sy/. ./yNMMMMm `` + .+ys- `:+hNMMMMMMy/` + `hNmmMMMMMMMMMMMMdo. + dMMMMMMMMMMMMMMMMMNh: + +hMMMMMMMMMMMMMMMMMmy. + -oNMMMMMMMMMMmy+.` + `:yNMMMds/.` + .//` EOF ;; "Trisquel"*) set_colors 4 6 read -rd '' ascii_data <<'EOF' - +${c1} ▄▄▄▄▄▄ + ▄█████████▄ + ▄▄▄▄▄▄ ████▀ ▀████ + ▄██████████▄ ████▀ ▄▄ ▀███ + ▄███▀▀ ▀▀████ ███▄ ▄█ ███ +▄███ ▄▄▄ ████▄ ▀██████ ▄███ +███ █▀▀██▄ █████▄ ▀▀ ▄████ +▀███ ███ ███████▄▄ ▄▄██████ +${c1} ▀███▄ ▄███ █████████████${c2}████▀ +${c1} ▀█████████ ███████${c2}███▀▀▀ + ▀▀███▀▀ ██████▀▀ + ██████▀ ▄▄▄▄ + █████▀ ████████ + █████ ███▀ ▀███ + ████▄ ██▄▄▄ ███ + █████▄ ▀▀ ▄██ + ██████▄▄▄████ + ▀▀█████▀▀ EOF ;; "Ubuntu-Budgie"*) set_colors 4 7 1 read -rd '' ascii_data <<'EOF' - +${c2} ./oydmMMMMMMmdyo/. + :smMMMMMMMMMMMhs+:++yhs: + `omMMMMMMMMMMMN+` `odo` + /NMMMMMMMMMMMMN- `sN/ + `hMMMMmhhmMMMMMMh sMh` + .mMmo- /yMMMMm` `MMm. + mN/ yMMMMMMMd- MMMm +oN- oMMMMMMMMMms+//+o+: :MMMMo +m/ +NMMMMMMMMMMMMMMMMm. :NMMMMm +M` .NMMMMMMMMMMMMMMMNodMMMMMMM +M- sMMMMMMMMMMMMMMMMMMMMMMMMM +mm` mMMMMMMMMMNdhhdNMMMMMMMMMm +oMm/ .dMMMMMMMMh: :dMMMMMMMo + mMMNyo/:/sdMMMMMMMMM+ sMMMMMm + .mMMMMMMMMMMMMMMMMMs `NMMMm. + `hMMMMMMMMMMM.oo+. `MMMh` + /NMMMMMMMMMo sMN/ + `omMMMMMMMMy. :dmo` + :smMMMMMMMh+-` `.:ohs: + ./oydmMMMMMMdhyo/. EOF ;; "Ubuntu-GNOME"*) set_colors 4 5 7 6 read -rd '' ascii_data <<'EOF' - +${c3} ./o. + .oooooooo + .oooo```soooo + .oooo` `soooo + .ooo` ${c4}.o.${c3} `\/ooo. + :ooo ${c4}:oooo.${c3} `\/ooo. + sooo ${c4}`ooooo${c3} \/oooo + \/ooo ${c4}`soooo${c3} `ooooo + `soooo ${c4}`\/ooo${c3} `soooo +${c4}./oo ${c3}`\/ooo ${c4}`/oooo.${c3} `/ooo +${c4}`\/ooo. ${c3}`/oooo. ${c4}`/oooo.${c3} `` +${c4} `\/ooo. ${c3}/oooo ${c4}/ooo` +${c4} `ooooo ${c3}`` ${c4}.oooo +${c4} `soooo. .oooo` + `\/oooooooooo` + ``\/oo`` EOF ;; "Ubuntu-MATE"*) set_colors 2 7 read -rd '' ascii_data <<'EOF' - +${c1} `:+shmNNMMNNmhs+:` + .odMMMMMMMMMMMMMMMMMMdo. + /dMMMMMMMMMMMMMMMmMMMMMMMMd/ + :mMMMMMMMMMMMMNNNNM/`/yNMMMMMMm: + `yMMMMMMMMMms:..-::oM: -omMMMMMy` + `dMMMMMMMMy-.odNMMMMMM: -odMMMMMMd` + hMMMMMMMm-.hMMy/....+M:`/yNm+mMMMMMMMh +/MMMMNmMN-:NMy`-yNMMMMMmNyyMN:`dMMMMMMM/ +hMMMMm -odMMh`sMMMMMMMMMMs sMN..MMMMMMMh +NMMMMm `/yNMMMMMMMMMMMM: MM+ mMMMMMMN +NMMMMm `/yNMMMMMMMMMMMM: MM+ mMMMMMMN +hMMMMm -odMMh sMMMMMMMMMMs oMN..MMMMMMMh +/MMMMNNMN-:NMy`-yNMMMMMNNsyMN:`dMMMMMMM/ + hMMMMMMMm-.hMMy/....+M:.+hNd+mMMMMMMMh + `dMMMMMMMMy-.odNMMMMMM: :smMMMMMMd` + yMMMMMMMMMms/..-::oM: .+dMMMMMy + :mMMMMMMMMMMMMNNNNM: :smMMMMMMm: + /dMMMMMMMMMMMMMMMdNMMMMMMMd/ + .odMMMMMMMMMMMMMMMMMMdo. + `:+shmNNMMNNmhs+:` EOF ;; "ubuntu_old") set_colors 1 7 3 read -rd '' ascii_data <<'EOF' - +${c1} ./+o+- +${c2} yyyyy- ${c1}-yyyyyy+ +${c2} ${c2}://+//////${c1}-yyyyyyo +${c3} .++ ${c2}.:/++++++/-${c1}.+sss/` +${c3} .:++o: ${c2}/++++++++/:--:/- +${c3} o:+o+:++.${c2}`..```.-/oo+++++/ +${c3} .:+o:+o/.${c2} `+sssoo+/ +${c2} .++/+:${c3}+oo+o:`${c2} /sssooo. +${c2}/+++//+:${c3}`oo+o${c2} /::--:. +${c2}+/+o+++${c3}`o++o${c1} ++////. +${c2} .++.o+${c3}++oo+:`${c1} /dddhhh. +${c3} .+.o+oo:.${c1} `oddhhhh+ +${c3} +.++o+o`${c1}`-````.:ohdhhhhh+ +${c3} `:o+++ ${c1}`ohhhhhhhhyo++os: +${c3} .o:${c1}`.syhhhhhhh/${c3}.oo++o` +${c1} /osyyyyyyo${c3}++ooo+++/ +${c1} ````` ${c3}+oo+++o: +${c3} `oo++. EOF ;; "Ubuntu-Studio") set_colors 6 7 read -rd '' ascii_data <<'EOF' - +${c1} ..-::::::-.` + `.:+++++++++++${c2}ooo${c1}++:.` + ./+++++++++++++${c2}sMMMNdyo${c1}+/. + .++++++++++++++++${c2}oyhmMMMMms${c1}++. + `/+++++++++${c2}osyhddddhys${c1}+${c2}osdMMMh${c1}++/` + `+++++++++${c2}ydMMMMNNNMMMMNds${c1}+${c2}oyyo${c1}++++` + +++++++++${c2}dMMNhso${c1}++++${c2}oydNMMmo${c1}++++++++` + :+${c2}odmy${c1}+++${c2}ooysoohmNMMNmyoohMMNs${c1}+++++++: + ++${c2}dMMm${c1}+${c2}oNMd${c1}++${c2}yMMMmhhmMMNs+yMMNo${c1}+++++++ +`++${c2}NMMy${c1}+${c2}hMMd${c1}+${c2}oMMMs${c1}++++${c2}sMMN${c1}++${c2}NMMs${c1}+++++++. +`++${c2}NMMy${c1}+${c2}hMMd${c1}+${c2}oMMMo${c1}++++${c2}sMMN${c1}++${c2}mMMs${c1}+++++++. + ++${c2}dMMd${c1}+${c2}oNMm${c1}++${c2}yMMNdhhdMMMs${c1}+y${c2}MMNo${c1}+++++++ + :+${c2}odmy${c1}++${c2}oo${c1}+${c2}ss${c1}+${c2}ohNMMMMmho${c1}+${c2}yMMMs${c1}+++++++: + +++++++++${c2}hMMmhs+ooo+oshNMMms${c1}++++++++ + `++++++++${c2}oymMMMMNmmNMMMMmy+oys${c1}+++++` + `/+++++++++${c2}oyhdmmmmdhso+sdMMMs${c1}++/ + ./+++++++++++++++${c2}oyhdNMMMms${c1}++. + ./+++++++++++++${c2}hMMMNdyo${c1}+/. + `.:+++++++++++${c2}sso${c1}++:. + ..-::::::-.. EOF ;; "Ubuntu"*) set_colors 1 7 3 read -rd '' ascii_data <<'EOF' - +${c1} .-/+oossssoo+/-. + `:+ssssssssssssssssss+:` + -+ssssssssssssssssssyyssss+- + .ossssssssssssssssss${c2}dMMMNy${c1}sssso. + /sssssssssss${c2}hdmmNNmmyNMMMMh${c1}ssssss/ + +sssssssss${c2}hm${c1}yd${c2}MMMMMMMNddddy${c1}ssssssss+ + /ssssssss${c2}hNMMM${c1}yh${c2}hyyyyhmNMMMNh${c1}ssssssss/ +.ssssssss${c2}dMMMNh${c1}ssssssssss${c2}hNMMMd${c1}ssssssss. ++ssss${c2}hhhyNMMNy${c1}ssssssssssss${c2}yNMMMy${c1}sssssss+ +oss${c2}yNMMMNyMMh${c1}ssssssssssssss${c2}hmmmh${c1}ssssssso +oss${c2}yNMMMNyMMh${c1}sssssssssssssshmmmh${c1}ssssssso ++ssss${c2}hhhyNMMNy${c1}ssssssssssss${c2}yNMMMy${c1}sssssss+ +.ssssssss${c2}dMMMNh${c1}ssssssssss${c2}hNMMMd${c1}ssssssss. + /ssssssss${c2}hNMMM${c1}yh${c2}hyyyyhdNMMMNh${c1}ssssssss/ + +sssssssss${c2}dm${c1}yd${c2}MMMMMMMMddddy${c1}ssssssss+ + /sssssssssss${c2}hdmNNNNmyNMMMMh${c1}ssssss/ + .ossssssssssssssssss${c2}dMMMNy${c1}sssso. + -+sssssssssssssssss${c2}yyy${c1}ssss+- + `:+ssssssssssssssssss+:` + .-/+oossssoo+/-. EOF ;; "void_small") set_colors 2 8 read -rd '' ascii_data <<'EOF' - +${c1} _______ + _ \______ - +| \ ___ \ | +| | / \ | | +| | \___/ | | +| \______ \_| + -_______\ EOF ;; "Void"*) set_colors 2 8 read -rd '' ascii_data <<'EOF' - +${c1} __.;=====;.__ + _.=+==++=++=+=+===;. + -=+++=+===+=+=+++++=_ + . -=:`` `--==+=++==. + _vi, ` --+=++++: + .uvnvi. _._ -==+==+. + .vvnvnI` .;==|==;. :|=||=|. +${c2}+QmQQm${c1}pvvnv; ${c2}_yYsyQQWUUQQQm #QmQ#${c1}:${c2}QQQWUV$QQmL +${c2} -QQWQW${c1}pvvo${c2}wZ?.wQQQE${c1}==<${c2}QWWQ/QWQW.QQWW${c1}(: ${c2}jQWQE +${c2} -$QQQQmmU' jQQQ@${c1}+=<${c2}QWQQ)mQQQ.mQQQC${c1}+;${c2}jWQQ@' +${c2} -$WQ8Y${c1}nI: ${c2}QWQQwgQQWV${c1}`${c2}mWQQ.jQWQQgyyWW@! +${c1} -1vvnvv. `~+++` ++|+++ + +vnvnnv, `-|=== + +vnvnvns. . :=- + -Invnvvnsi..___..=sv=. ` + +Invnvnvnnnnnnnnvvnn;. + ~|Invnvnvvnvvvnnv}+` + -~|{*l}*|~ EOF ;; @@ -6954,28 +7435,96 @@ EOF "Windows 10"* | "windows10" | "windows8" ) set_colors 6 7 read -rd '' ascii_data <<'EOF' +${c1} .., + ....,,:;+ccllll + ...,,+:; cllllllllllllllllll +,cclllllllllll lllllllllllllllllll +llllllllllllll lllllllllllllllllll +llllllllllllll lllllllllllllllllll +llllllllllllll lllllllllllllllllll +llllllllllllll lllllllllllllllllll +llllllllllllll lllllllllllllllllll +llllllllllllll lllllllllllllllllll +llllllllllllll lllllllllllllllllll +llllllllllllll lllllllllllllllllll +llllllllllllll lllllllllllllllllll +llllllllllllll lllllllllllllllllll +`'ccllllllllll lllllllllllllllllll + `' \\*:: :ccllllllllllllllll + ````''*::cll + `` EOF ;; "Windows"*) set_colors 1 2 4 3 read -rd '' ascii_data <<'EOF' - +${c1} ,.=:!!t3Z3z., + :tt:::tt333EE3 +${c1} Et:::ztt33EEEL${c2} @Ee., .., +${c1} ;tt:::tt333EE7${c2} ;EEEEEEttttt33# +${c1} :Et:::zt333EEQ.${c2} $EEEEEttttt33QL +${c1} it::::tt333EEF${c2} @EEEEEEttttt33F +${c1} ;3=*^```"*4EEV${c2} :EEEEEEttttt33@. +${c3} ,.=::::!t=., ${c1}`${c2} @EEEEEEtttz33QF +${c3} ;::::::::zt33)${c2} "4EEEtttji3P* +${c3} :t::::::::tt33.${c4}:Z3z..${c2} ``${c4} ,..g. +${c3} i::::::::zt33F${c4} AEEEtttt::::ztF +${c3} ;:::::::::t33V${c4} ;EEEttttt::::t3 +${c3} E::::::::zt33L${c4} @EEEtttt::::z3F +${c3}{3=*^```"*4E3)${c4} ;EEEtttt:::::tZ` +${c3} `${c4} :EEEEtttt::::z7 + "VEzjt:;;z>*` EOF ;; "Xubuntu"*) set_colors 4 7 1 read -rd '' ascii_data <<'EOF' - +${c1} `-/osyhddddhyso/-` + .+yddddddddddddddddddy+. + :yddddddddddddddddddddddddy: + -yddddddddddddddddddddhdddddddy- + odddddddddddyshdddddddh`dddd+ydddo + `yddddddhshdd- ydddddd+`ddh.:dddddy` + sddddddy /d. :dddddd-:dy`-ddddddds +:ddddddds /+ .dddddd`yy`:ddddddddd: +sdddddddd` . .-:/+ssdyodddddddddds +ddddddddy `:ohddddddddd +dddddddd. +dddddddd +sddddddy ydddddds +:dddddd+ .oddddddd: + sdddddo ./ydddddddds + `yddddd. `:ohddddddddddy` + oddddh/` `.:+shdddddddddddddo + -ydddddhyssyhdddddddddddddddddy- + :yddddddddddddddddddddddddy: + .+yddddddddddddddddddy+. + `-/osyhddddhyso/-` EOF ;; "Zorin"*) set_colors 4 6 read -rd '' ascii_data <<'EOF' +${c1} `osssssssssssssssssssso` + .osssssssssssssssssssssso. + .+oooooooooooooooooooooooo+. + + `::::::::::::::::::::::. .:` + `+ssssssssssssssssss+:.` `.:+ssso` +.ossssssssssssssso/. `-+ossssssso. +ssssssssssssso/-` `-/osssssssssssss +.ossssssso/-` .-/ossssssssssssssso. + `+sss+:. `.:+ssssssssssssssssss+` + `:. .::::::::::::::::::::::` + + + .+oooooooooooooooooooooooo+. + -osssssssssssssssssssssso- + `osssssssssssssssssssso` EOF ;; From 8b41e513ce0b58e8e6c632ff23e67596302c3f0d Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Thu, 3 May 2018 14:55:34 +1000 Subject: [PATCH 13/25] general: Start inlining ascii. --- neofetch | 111 ++++++++++++++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 105 insertions(+), 6 deletions(-) diff --git a/neofetch b/neofetch index 0c0a6aaa..77db76a0 100755 --- a/neofetch +++ b/neofetch @@ -7532,32 +7532,131 @@ EOF case "$kernel_name" in *"BSD") set_colors 1 7 4 3 6 - ascii_file="bsd" + read -rd '' ascii_data <<'EOF' +${c1} , , + /( )` + \ \___ / | + /- _ `-/ ' + (${c2}/\/ \ ${c1}\ /\ + ${c2}/ / | ` ${c1}\ + ${c3}O O ${c2}) ${c1}/ | + ${c2}`-^--'${c1}`< ' + (_.) _ ) / + `.___/` / + `-----' / +${c4}<----. __ / __ \ +${c4}<----|====${c1}O)))${c4}==${c1}) \) /${c4}====| +<----' ${c1}`--' `.__,' \ + | | + \ / /\ + ${c5}______${c1}( (_ / \______/ + ${c5},' ,-----' | + `--{__________) +EOF ;; "Darwin") set_colors 2 3 1 1 5 4 - ascii_file="mac" + read -rd '' ascii_data <<'EOF' +${c1} 'c. + ,xNMM. + .OMMMMo + OMMM0, + .;loddo:' loolloddol;. + cKMMMMMMMMMMNWMMMMMMMMMM0: +${c2} .KMMMMMMMMMMMMMMMMMMMMMMMWd. + XMMMMMMMMMMMMMMMMMMMMMMMX. +${c3};MMMMMMMMMMMMMMMMMMMMMMMM: +:MMMMMMMMMMMMMMMMMMMMMMMM: +${c4}.MMMMMMMMMMMMMMMMMMMMMMMMX. + kMMMMMMMMMMMMMMMMMMMMMMMMWd. + ${c5}.XMMMMMMMMMMMMMMMMMMMMMMMMMMk + .XMMMMMMMMMMMMMMMMMMMMMMMMK. + ${c6}kMMMMMMMMMMMMMMMMMMMMMMd + ;KMMMMMMMWXXWMMMMMMMk. + .cooc,. .,coo:. +EOF ;; "GNU"*) set_colors fg 7 - ascii_file="gnu" + read -rd '' ascii_data <<'EOF' +${c1} _-`````-, ,- '- . + .' .- - | | - -. `. + /.' / `. \ +:/ : _... ..._ `` : +:: : /._ .`:'_.._\. || : +:: `._ ./ ,` : \ . _.'' . +`:. / | -. \-. \\_ / + \:._ _/ .' .@) \@) ` `\ ,.' + _/,--' .- .\,-.`--`. + ,'/'' (( \ ` ) + /'/' \ `-' ( + '/'' `._,-----' + ''/' .,---' + ''/' ;: + ''/'' ''/ + ''/''/'' + '/'/' + `; +EOF ;; "Linux") set_colors fg 8 3 - ascii_file="linux" + read -rd '' ascii_data <<'EOF' +${c2} ##### +${c2} ####### +${c2} ##${c1}O${c2}#${c1}O${c2}## +${c2} #${c3}#####${c2}# +${c2} ##${c1}##${c3}###${c1}##${c2}## +${c2} #${c1}##########${c2}## +${c2} #${c1}############${c2}## +${c2} #${c1}############${c2}### +${c3} ##${c2}#${c1}###########${c2}##${c3}# +${c3}######${c2}#${c1}#######${c2}#${c3}###### +${c3}#######${c2}#${c1}#####${c2}#${c3}####### +${c3} #####${c2}#######${c3}##### +EOF ;; "SunOS") set_colors 3 7 - ascii_file="solaris" + read -rd '' ascii_data <<'EOF' +${c1} `- ` + `-- `+- .: + .+: `++: -/+- . + `.::` -++/``:::`./+/ `.-/. + `++/-`.` ` /++:` + `` ./:` .: `..`.- +``./+/:- -+++:- + -/+` :. +EOF ;; "IRIX"*) set_colors 4 7 - ascii_file="irix" + read -rd '' ascii_data <<'EOF' +${c1} ./ohmNd/ +dNmho/- + `:+ydNMMMMMMMM.-MMMMMMMMMdyo:. + `hMMMMMMNhs/sMMM-:MMM+/shNMMMMMMh` + -NMMMMMmo-` /MMM-/MMM- `-omMMMMMN. + `.`-+hNMMMMMNhyMMM-/MMMshmMMMMMmy+...` ++mMNds:-:sdNMMMMMMMyyMMMMMMMNdo:.:sdMMm+ +dMMMMMMmy+.-/ymNMMMMMMMMNmy/-.+hmMMMMMMd +oMMMMmMMMMNds:.+MMMmmMMN/.-odNMMMMmMMMM+ +.MMMM-/ymMMMMMmNMMy..hMMNmMMMMMmy/-MMMM. + hMMM/ `/dMMMMMMMN////NMMMMMMMd/. /MMMh + /MMMdhmMMMmyyMMMMMMMMMMMMhymMMMmhdMMM: + `mMMMMNho//sdMMMMM//NMMMMms//ohNMMMMd + `/so/:+ymMMMNMMMM` mMMMMMMMmh+::+o/` + `yNMMNho-yMMMM` NMMMm.+hNMMNh` + -MMMMd: oMMMM. NMMMh :hMMMM- + -yNMMMmooMMMM- NMMMyomMMMNy- + .omMMMMMMMM-`NMMMMMMMmo. + `:hMMMMMM. NMMMMMh/` + .odNm+ /dNms. +EOF ;; esac ;; From 6a7fb8121332b5a93b0c279c07ec58d824f6c72a Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Thu, 3 May 2018 14:59:37 +1000 Subject: [PATCH 14/25] general: Start inlining ascii. --- neofetch | 62 +++++++++++++++++++++++++++++++++++++++++++------------- 1 file changed, 48 insertions(+), 14 deletions(-) diff --git a/neofetch b/neofetch index 77db76a0..128e23bc 100755 --- a/neofetch +++ b/neofetch @@ -4788,20 +4788,6 @@ EOF "ChaletOS"*) set_colors 4 7 1 read -rd '' ascii_data <<'EOF' - -EOF - ;; - - "Chapeau"*) - set_colors 2 7 - read -rd '' ascii_data <<'EOF' - -EOF - ;; - - "Chrom"*) - set_colors 2 1 3 4 7 - read -rd '' ascii_data <<'EOF' ${c1} `.//+osso+/:`` `/sdNNmhyssssydmNNdo:` :hNmy+-` .-+hNNs- @@ -4825,6 +4811,54 @@ ${c1} `.//+osso+/:`` EOF ;; + "Chapeau"*) + set_colors 2 7 + read -rd '' ascii_data <<'EOF' +${c1} .-/-. + ////////. + ////////${c2}y+${c1}//. + ////////${c2}mMN${c1}/////. + ////////${c2}mMN+${c1}////////. + ////////////////////////. + /////////+${c2}shhddhyo${c1}+////////. + ////////${c2}ymMNmdhhdmNNdo${c1}///////. +///////+${c2}mMms${c1}////////${c2}hNMh${c1}///////. +///////${c2}NMm+${c1}//////////${c2}sMMh${c1}/////// +//////${c2}oMMNmmmmmmmmmmmmMMm${c1}/////// +//////${c2}+MMmssssssssssssss+${c1}/////// +`//////${c2}yMMy${c1}//////////////////// + `//////${c2}smMNhso++oydNm${c1}//////// + `///////${c2}ohmNMMMNNdy+${c1}/////// + `//////////${c2}++${c1}////////// + `////////////////. + -////////- +EOF + ;; + + "Chrom"*) + set_colors 2 1 3 4 7 + read -rd '' ascii_data <<'EOF' +${c2} .,:loool:,. + .,coooooooooooooc,. + .,lllllllllllllllllllll,. + ;ccccccccccccccccccccccccc; +${c1} '${c2}ccccccccccccccccccccccccccccc. +${c1} ,oo${c2}c::::::::okO${c5}000${c3}0OOkkkkkkkkkkk: +${c1}.ooool${c2};;;;:x${c5}K0${c4}kxxxxxk${c5}0X${c3}K0000000000. +${c1}:oooool${c2};,;O${c5}K${c4}ddddddddddd${c5}KX${c3}000000000d +${c1}lllllool${c2};l${c5}N${c4}dllllllllllld${c5}N${c3}K000000000 +${c1}lllllllll${c2}o${c5}M${c4}dccccccccccco${c5}W${c3}K000000000 +${c1};cllllllllX${c5}X${c4}c:::::::::c${c5}0X${c3}000000000d +${c1}.ccccllllllO${c5}Nk${c4}c;,,,;cx${c5}KK${c3}0000000000. +${c1} .cccccclllllxOO${c5}OOO${c1}Okx${c3}O0000000000; +${c1} .:ccccccccllllllllo${c3}O0000000OOO, +${c1} ,:ccccccccclllcd${c3}0000OOOOOOl. +${c1} '::ccccccccc${c3}dOOOOOOOkx:. +${c1} ..,::cccc${c3}xOOOkkko;. +${c1} ..,:${c3}dOkxl:. +EOF + ;; + "Clover"*) set_colors 2 6 read -rd '' ascii_data <<'EOF' From 0415cd405e93d20da700d2dfa9c68ad894afafca Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Thu, 3 May 2018 15:04:15 +1000 Subject: [PATCH 15/25] general: Remove old files --- ascii/distro/aix | 20 ------------ ascii/distro/alpine | 20 ------------ ascii/distro/alpine_small | 6 ---- ascii/distro/amazon | 19 ----------- ascii/distro/anarchy | 28 ---------------- ascii/distro/android | 13 -------- ascii/distro/antergos | 19 ----------- ascii/distro/antix | 13 -------- ascii/distro/aosc | 20 ------------ ascii/distro/apricity | 18 ----------- ascii/distro/arch | 19 ----------- ascii/distro/arch_old | 16 --------- ascii/distro/arch_small | 7 ---- ascii/distro/arch_xferience | 19 ----------- ascii/distro/archbox | 19 ----------- ascii/distro/archlabs | 21 ------------ ascii/distro/archmerge | 20 ------------ ascii/distro/artix | 19 ----------- ascii/distro/arya | 15 --------- ascii/distro/bitrig | 18 ----------- ascii/distro/blag | 17 ---------- ascii/distro/blankon | 17 ---------- ascii/distro/bsd | 19 ----------- ascii/distro/bunsenlabs | 20 ------------ ascii/distro/calculate | 20 ------------ ascii/distro/centos | 19 ----------- ascii/distro/chakra | 18 ----------- ascii/distro/chaletos | 20 ------------ ascii/distro/chapeau | 18 ----------- ascii/distro/chrome | 18 ----------- ascii/distro/cloveros | 20 ------------ ascii/distro/coreos | 20 ------------ ascii/distro/crux | 18 ----------- ascii/distro/crux_small | 7 ---- ascii/distro/debian | 17 ---------- ascii/distro/debian_small | 6 ---- ascii/distro/deepin | 18 ----------- ascii/distro/desaos | 16 --------- ascii/distro/devuan | 15 --------- ascii/distro/dracos | 13 -------- ascii/distro/dragonflybsd | 15 --------- ascii/distro/dragonflybsd_old | 18 ----------- ascii/distro/dragonflybsd_small | 4 --- ascii/distro/elementary | 17 ---------- ascii/distro/endless | 21 ------------ ascii/distro/exherbo | 22 ------------- ascii/distro/fedora | 17 ---------- ascii/distro/freebsd | 15 --------- ascii/distro/freebsd_small | 7 ---- ascii/distro/frugalware | 23 ------------- ascii/distro/funtoo | 11 ------- ascii/distro/galliumos | 19 ----------- ascii/distro/gem | 15 --------- ascii/distro/gentoo | 18 ----------- ascii/distro/gentoo_small | 7 ---- ascii/distro/gnewsense | 12 ------- ascii/distro/gnu | 18 ----------- ascii/distro/gobolinux | 6 ---- ascii/distro/grombyang | 18 ----------- ascii/distro/guixsd | 10 ------ ascii/distro/haiku | 17 ---------- ascii/distro/hyperbola | 16 --------- ascii/distro/irix | 19 ----------- ascii/distro/kali | 21 ------------ ascii/distro/kaos | 16 --------- ascii/distro/kde | 19 ----------- ascii/distro/kogaion | 20 ------------ ascii/distro/korora | 16 --------- ascii/distro/kslinux | 11 ------- ascii/distro/kubuntu | 20 ------------ ascii/distro/lede | 9 ------ ascii/distro/linux | 12 ------- ascii/distro/lmde | 17 ---------- ascii/distro/lubuntu | 20 ------------ ascii/distro/lunar | 13 -------- ascii/distro/mac | 18 ----------- ascii/distro/mac_small | 8 ----- ascii/distro/mageia | 19 ----------- ascii/distro/magpieos | 20 ------------ ascii/distro/manjaro | 14 -------- ascii/distro/maui | 20 ------------ ascii/distro/mer | 27 ---------------- ascii/distro/minix | 17 ---------- ascii/distro/mint | 16 --------- ascii/distro/mx | 17 ---------- ascii/distro/netbsd | 17 ---------- ascii/distro/netrunner | 20 ------------ ascii/distro/nitrux | 18 ----------- ascii/distro/nixos | 19 ----------- ascii/distro/nixos_small | 7 ---- ascii/distro/nurunner | 19 ----------- ascii/distro/nutyx | 23 ------------- ascii/distro/obrevenge | 18 ----------- ascii/distro/openbsd | 23 ------------- ascii/distro/openbsd_small | 7 ---- ascii/distro/openindiana | 16 --------- ascii/distro/openmandriva | 15 --------- ascii/distro/openwrt | 9 ------ ascii/distro/oracle | 12 ------- ascii/distro/osmc | 20 ------------ ascii/distro/pacbsd | 24 -------------- ascii/distro/parabola | 16 --------- ascii/distro/pardus | 18 ----------- ascii/distro/parrot | 24 -------------- ascii/distro/parsix | 21 ------------ ascii/distro/pclinuxos | 19 ----------- ascii/distro/peppermint | 19 ----------- ascii/distro/pop_os | 21 ------------ ascii/distro/porteus | 23 ------------- ascii/distro/postmarketos | 17 ---------- ascii/distro/puppy | 18 ----------- ascii/distro/qubes | 21 ------------ ascii/distro/raspbian | 23 ------------- ascii/distro/redhat | 16 --------- ascii/distro/redstar | 18 ----------- ascii/distro/refracta | 19 ----------- ascii/distro/rosa | 20 ------------ ascii/distro/sabayon | 18 ----------- ascii/distro/sabotage | 12 ------- ascii/distro/sailfishos | 18 ----------- ascii/distro/salentos | 20 ------------ ascii/distro/scientific | 20 ------------ ascii/distro/siduction | 21 ------------ ascii/distro/slackware | 21 ------------ ascii/distro/slitaz | 17 ---------- ascii/distro/smartos | 17 ---------- ascii/distro/solaris | 8 ----- ascii/distro/solus | 20 ------------ ascii/distro/source_mage | 21 ------------ ascii/distro/sparky | 21 ------------ ascii/distro/steamos | 18 ----------- ascii/distro/suse | 18 ----------- ascii/distro/swagarch | 15 --------- ascii/distro/tails | 19 ----------- ascii/distro/trisquel | 18 ----------- ascii/distro/trueos | 27 ---------------- ascii/distro/tumbleweed | 13 -------- ascii/distro/ubuntu | 20 ------------ ascii/distro/ubuntu-budgie | 20 ------------ ascii/distro/ubuntu-gnome | 16 --------- ascii/distro/ubuntu-mate | 20 ------------ ascii/distro/ubuntu-studio | 20 ------------ ascii/distro/ubuntu_old | 19 ----------- ascii/distro/void | 18 ----------- ascii/distro/void_small | 7 ---- ascii/distro/windows | 16 --------- ascii/distro/windows10 | 19 ----------- ascii/distro/xubuntu | 20 ------------ ascii/distro/zorin | 17 ---------- config/travis.conf | 55 ------------------------------- neofetch | 57 +++++++++++++++++++++++++++++++++ 151 files changed, 57 insertions(+), 2609 deletions(-) delete mode 100644 ascii/distro/aix delete mode 100644 ascii/distro/alpine delete mode 100644 ascii/distro/alpine_small delete mode 100644 ascii/distro/amazon delete mode 100644 ascii/distro/anarchy delete mode 100644 ascii/distro/android delete mode 100644 ascii/distro/antergos delete mode 100644 ascii/distro/antix delete mode 100644 ascii/distro/aosc delete mode 100644 ascii/distro/apricity delete mode 100644 ascii/distro/arch delete mode 100644 ascii/distro/arch_old delete mode 100644 ascii/distro/arch_small delete mode 100644 ascii/distro/arch_xferience delete mode 100644 ascii/distro/archbox delete mode 100644 ascii/distro/archlabs delete mode 100644 ascii/distro/archmerge delete mode 100644 ascii/distro/artix delete mode 100644 ascii/distro/arya delete mode 100644 ascii/distro/bitrig delete mode 100644 ascii/distro/blag delete mode 100644 ascii/distro/blankon delete mode 100644 ascii/distro/bsd delete mode 100644 ascii/distro/bunsenlabs delete mode 100644 ascii/distro/calculate delete mode 100644 ascii/distro/centos delete mode 100644 ascii/distro/chakra delete mode 100644 ascii/distro/chaletos delete mode 100644 ascii/distro/chapeau delete mode 100644 ascii/distro/chrome delete mode 100644 ascii/distro/cloveros delete mode 100644 ascii/distro/coreos delete mode 100644 ascii/distro/crux delete mode 100644 ascii/distro/crux_small delete mode 100644 ascii/distro/debian delete mode 100644 ascii/distro/debian_small delete mode 100644 ascii/distro/deepin delete mode 100644 ascii/distro/desaos delete mode 100644 ascii/distro/devuan delete mode 100644 ascii/distro/dracos delete mode 100644 ascii/distro/dragonflybsd delete mode 100644 ascii/distro/dragonflybsd_old delete mode 100644 ascii/distro/dragonflybsd_small delete mode 100644 ascii/distro/elementary delete mode 100644 ascii/distro/endless delete mode 100644 ascii/distro/exherbo delete mode 100644 ascii/distro/fedora delete mode 100644 ascii/distro/freebsd delete mode 100644 ascii/distro/freebsd_small delete mode 100644 ascii/distro/frugalware delete mode 100644 ascii/distro/funtoo delete mode 100644 ascii/distro/galliumos delete mode 100644 ascii/distro/gem delete mode 100644 ascii/distro/gentoo delete mode 100644 ascii/distro/gentoo_small delete mode 100644 ascii/distro/gnewsense delete mode 100644 ascii/distro/gnu delete mode 100644 ascii/distro/gobolinux delete mode 100644 ascii/distro/grombyang delete mode 100644 ascii/distro/guixsd delete mode 100644 ascii/distro/haiku delete mode 100644 ascii/distro/hyperbola delete mode 100644 ascii/distro/irix delete mode 100644 ascii/distro/kali delete mode 100644 ascii/distro/kaos delete mode 100644 ascii/distro/kde delete mode 100644 ascii/distro/kogaion delete mode 100644 ascii/distro/korora delete mode 100644 ascii/distro/kslinux delete mode 100644 ascii/distro/kubuntu delete mode 100644 ascii/distro/lede delete mode 100644 ascii/distro/linux delete mode 100644 ascii/distro/lmde delete mode 100644 ascii/distro/lubuntu delete mode 100644 ascii/distro/lunar delete mode 100644 ascii/distro/mac delete mode 100644 ascii/distro/mac_small delete mode 100644 ascii/distro/mageia delete mode 100644 ascii/distro/magpieos delete mode 100644 ascii/distro/manjaro delete mode 100644 ascii/distro/maui delete mode 100644 ascii/distro/mer delete mode 100644 ascii/distro/minix delete mode 100644 ascii/distro/mint delete mode 100644 ascii/distro/mx delete mode 100644 ascii/distro/netbsd delete mode 100644 ascii/distro/netrunner delete mode 100644 ascii/distro/nitrux delete mode 100644 ascii/distro/nixos delete mode 100644 ascii/distro/nixos_small delete mode 100644 ascii/distro/nurunner delete mode 100644 ascii/distro/nutyx delete mode 100644 ascii/distro/obrevenge delete mode 100644 ascii/distro/openbsd delete mode 100644 ascii/distro/openbsd_small delete mode 100644 ascii/distro/openindiana delete mode 100644 ascii/distro/openmandriva delete mode 100644 ascii/distro/openwrt delete mode 100644 ascii/distro/oracle delete mode 100644 ascii/distro/osmc delete mode 100644 ascii/distro/pacbsd delete mode 100644 ascii/distro/parabola delete mode 100644 ascii/distro/pardus delete mode 100644 ascii/distro/parrot delete mode 100644 ascii/distro/parsix delete mode 100644 ascii/distro/pclinuxos delete mode 100644 ascii/distro/peppermint delete mode 100644 ascii/distro/pop_os delete mode 100644 ascii/distro/porteus delete mode 100644 ascii/distro/postmarketos delete mode 100644 ascii/distro/puppy delete mode 100644 ascii/distro/qubes delete mode 100644 ascii/distro/raspbian delete mode 100644 ascii/distro/redhat delete mode 100644 ascii/distro/redstar delete mode 100644 ascii/distro/refracta delete mode 100644 ascii/distro/rosa delete mode 100644 ascii/distro/sabayon delete mode 100644 ascii/distro/sabotage delete mode 100644 ascii/distro/sailfishos delete mode 100644 ascii/distro/salentos delete mode 100644 ascii/distro/scientific delete mode 100644 ascii/distro/siduction delete mode 100644 ascii/distro/slackware delete mode 100644 ascii/distro/slitaz delete mode 100644 ascii/distro/smartos delete mode 100644 ascii/distro/solaris delete mode 100644 ascii/distro/solus delete mode 100644 ascii/distro/source_mage delete mode 100644 ascii/distro/sparky delete mode 100644 ascii/distro/steamos delete mode 100644 ascii/distro/suse delete mode 100644 ascii/distro/swagarch delete mode 100644 ascii/distro/tails delete mode 100644 ascii/distro/trisquel delete mode 100644 ascii/distro/trueos delete mode 100644 ascii/distro/tumbleweed delete mode 100644 ascii/distro/ubuntu delete mode 100644 ascii/distro/ubuntu-budgie delete mode 100644 ascii/distro/ubuntu-gnome delete mode 100644 ascii/distro/ubuntu-mate delete mode 100644 ascii/distro/ubuntu-studio delete mode 100644 ascii/distro/ubuntu_old delete mode 100644 ascii/distro/void delete mode 100644 ascii/distro/void_small delete mode 100644 ascii/distro/windows delete mode 100644 ascii/distro/windows10 delete mode 100644 ascii/distro/xubuntu delete mode 100644 ascii/distro/zorin delete mode 100644 config/travis.conf diff --git a/ascii/distro/aix b/ascii/distro/aix deleted file mode 100644 index 8526b7c6..00000000 --- a/ascii/distro/aix +++ /dev/null @@ -1,20 +0,0 @@ -${c1} `:+ssssossossss+-` - .oys///oyhddddhyo///sy+. - /yo:+hNNNNNNNNNNNNNNNNh+:oy/ - :h/:yNNNNNNNNNNNNNNNNNNNNNNy-+h: - `ys.yNNNNNNNNNNNNNNNNNNNNNNNNNNy.ys - `h+-mNNNNNNNNNNNNNNNNNNNNNNNNNNNNm-oh - h+-NNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNN.oy -/d`mNNNNNNN/::mNNNd::m+:/dNNNo::dNNNd`m: -h//NNNNNNN: . .NNNh mNo od. -dNNNNN:+y -N.sNNNNNN+ -N/ -NNh mNNd. sNNNNNNNo-m -N.sNNNNNs +oo /Nh mNNs` ` /mNNNNNNo-m -h//NNNNh ossss` +h md- .hm/ `sNNNNN:+y -:d`mNNN+/yNNNNNd//y//h//oNNNNy//sNNNd`m- - yo-NNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNm.ss - `h+-mNNNNNNNNNNNNNNNNNNNNNNNNNNNNm-oy - sy.yNNNNNNNNNNNNNNNNNNNNNNNNNNs.yo - :h+-yNNNNNNNNNNNNNNNNNNNNNNs-oh- - :ys:/yNNNNNNNNNNNNNNNmy/:sy: - .+ys///osyhhhhys+///sy+. - -/osssossossso/- diff --git a/ascii/distro/alpine b/ascii/distro/alpine deleted file mode 100644 index 8f9b8771..00000000 --- a/ascii/distro/alpine +++ /dev/null @@ -1,20 +0,0 @@ -${c1} .hddddddddddddddddddddddh. - :dddddddddddddddddddddddddd: - /dddddddddddddddddddddddddddd/ - +dddddddddddddddddddddddddddddd+ - `sdddddddddddddddddddddddddddddddds` - `ydddddddddddd++hdddddddddddddddddddy` -.hddddddddddd+` `+ddddh:-sdddddddddddh. -hdddddddddd+` `+y: .sddddddddddh -ddddddddh+` `//` `.` -sddddddddd -ddddddh+` `/hddh/` `:s- -sddddddd -ddddh+` `/+/dddddh/` `+s- -sddddd -ddd+` `/o` :dddddddh/` `oy- .yddd -hdddyo+ohddyosdddddddddho+oydddy++ohdddh -.hddddddddddddddddddddddddddddddddddddh. - `yddddddddddddddddddddddddddddddddddy` - `sdddddddddddddddddddddddddddddddds` - +dddddddddddddddddddddddddddddd+ - /dddddddddddddddddddddddddddd/ - :dddddddddddddddddddddddddd: - .hddddddddddddddddddddddh. diff --git a/ascii/distro/alpine_small b/ascii/distro/alpine_small deleted file mode 100644 index 9949011c..00000000 --- a/ascii/distro/alpine_small +++ /dev/null @@ -1,6 +0,0 @@ -${c1} /\\ /\\ - /${c2}/ ${c1}\\ \\ - /${c2}/ ${c1}\\ \\ -/${c2}// ${c1}\\ \\ -${c2}// ${c1}\\ \\ - \\ diff --git a/ascii/distro/amazon b/ascii/distro/amazon deleted file mode 100644 index 050c5b3a..00000000 --- a/ascii/distro/amazon +++ /dev/null @@ -1,19 +0,0 @@ -${c1} `-/oydNNdyo:.` - `.:+shmMMMMMMMMMMMMMMmhs+:.` - -+hNNMMMMMMMMMMMMMMMMMMMMMMNNho- -.`` -/+shmNNMMMMMMNNmhs+/- ``. -dNmhs+:. `.:/oo/:.` .:+shmNd -dMMMMMMMNdhs+:.. ..:+shdNMMMMMMMd -dMMMMMMMMMMMMMMNds odNMMMMMMMMMMMMMMd -dMMMMMMMMMMMMMMMMh yMMMMMMMMMMMMMMMMd -dMMMMMMMMMMMMMMMMh yMMMMMMMMMMMMMMMMd -dMMMMMMMMMMMMMMMMh yMMMMMMMMMMMMMMMMd -dMMMMMMMMMMMMMMMMh yMMMMMMMMMMMMMMMMd -dMMMMMMMMMMMMMMMMh yMMMMMMMMMMMMMMMMd -dMMMMMMMMMMMMMMMMh yMMMMMMMMMMMMMMMMd -dMMMMMMMMMMMMMMMMh yMMMMMMMMMMMMMMMMd -dMMMMMMMMMMMMMMMMh yMMMMMMMMMMMMMMMMd -dMMMMMMMMMMMMMMMMh yMMMMMMMMMMMMMMMMd -.:+ydNMMMMMMMMMMMh yMMMMMMMMMMMNdy+:. - `.:+shNMMMMMh yMMMMMNhs+:`` - `-+shy shs+:` diff --git a/ascii/distro/anarchy b/ascii/distro/anarchy deleted file mode 100644 index d0f5a140..00000000 --- a/ascii/distro/anarchy +++ /dev/null @@ -1,28 +0,0 @@ - ${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}+++++${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} \ No newline at end of file diff --git a/ascii/distro/android b/ascii/distro/android deleted file mode 100644 index 17e7ff30..00000000 --- a/ascii/distro/android +++ /dev/null @@ -1,13 +0,0 @@ -${c1} ╲ ▁▂▂▂▁ ╱ - ▄███████▄ - ▄██${c2} ${c1}███${c2} ${c1}██▄ - ▄███████████▄ -▄█ ▄▄▄▄▄▄▄▄▄▄▄▄▄ █▄ -██ █████████████ ██ -██ █████████████ ██ -██ █████████████ ██ -██ █████████████ ██ - █████████████ - ███████████ - ██ ██ - ██ ██ diff --git a/ascii/distro/antergos b/ascii/distro/antergos deleted file mode 100644 index 023af9bd..00000000 --- a/ascii/distro/antergos +++ /dev/null @@ -1,19 +0,0 @@ -${c2} `.-/::/-`` - .-/osssssssso/. - :osyysssssssyyys+- - `.+yyyysssssssssyyyyy+. - `/syyyyyssssssssssyyyyys-` - `/yhyyyyysss${c1}++${c2}ssosyyyyhhy/` - .ohhhyyyys${c1}o++/+o${c2}so${c1}+${c2}syy${c1}+${c2}shhhho. - .shhhhys${c1}oo++//+${c2}sss${c1}+++${c2}yyy${c1}+s${c2}hhhhs. - -yhhhhs${c1}+++++++o${c2}ssso${c1}+++${c2}yyy${c1}s+o${c2}hhddy: - -yddhhy${c1}o+++++o${c2}syyss${c1}++++${c2}yyy${c1}yooy${c2}hdddy- - .yddddhs${c1}o++o${c2}syyyyys${c1}+++++${c2}yyhh${c1}sos${c2}hddddy` -`odddddhyosyhyyyyyy${c1}++++++${c2}yhhhyosddddddo -.dmdddddhhhhhhhyyyo${c1}+++++${c2}shhhhhohddddmmh. -ddmmdddddhhhhhhhso${c1}++++++${c2}yhhhhhhdddddmmdy -dmmmdddddddhhhyso${c1}++++++${c2}shhhhhddddddmmmmh --dmmmdddddddhhys${c1}o++++o${c2}shhhhdddddddmmmmd- -.smmmmddddddddhhhhhhhhhdddddddddmmmms. - `+ydmmmdddddddddddddddddddmmmmdy/. - `.:+ooyyddddddddddddyyso+:.` diff --git a/ascii/distro/antix b/ascii/distro/antix deleted file mode 100644 index c383774e..00000000 --- a/ascii/distro/antix +++ /dev/null @@ -1,13 +0,0 @@ -${c1} - \ - , - ~ ^ ~ - \ / - , ' \ ' , / - , \ '/ - , \ / , - ,___, \/ , - / | _ _ _|_ o /\ , -|, | / |/ | | | / \ , - \,_/\_/ | |_/|_/|_/_/ \, - , / ,\ - , / , ' \ - ' - , _ _ _ , ' diff --git a/ascii/distro/aosc b/ascii/distro/aosc deleted file mode 100644 index 785ba7d9..00000000 --- a/ascii/distro/aosc +++ /dev/null @@ -1,20 +0,0 @@ -${c2} .:+syhhhhys+:. - .ohNMMMMMMMMMMMMMMNho. - `+mMMMMMMMMMMmdmNMMMMMMMMm+` - +NMMMMMMMMMMMM/ `./smMMMMMN+ - .mMMMMMMMMMMMMMMo -yMMMMMm. - :NMMMMMMMMMMMMMMMs .hMMMMN: - .NMMMMhmMMMMMMMMMMm+/- oMMMMN. - dMMMMs ./ymMMMMMMMMMMNy. sMMMMd --MMMMN` oMMMMMMMMMMMN: `NMMMM- -/MMMMh NMMMMMMMMMMMMm hMMMM/ -/MMMMh NMMMMMMMMMMMMm hMMMM/ --MMMMN` :MMMMMMMMMMMMy. `NMMMM- - dMMMMs .yNMMMMMMMMMMMNy/. sMMMMd - .NMMMMo -/+sMMMMMMMMMMMmMMMMN. - :NMMMMh. .MMMMMMMMMMMMMMMN: - .mMMMMMy- NMMMMMMMMMMMMMm. - +NMMMMMms/.` mMMMMMMMMMMMN+ - `+mMMMMMMMMNmddMMMMMMMMMMm+` - .ohNMMMMMMMMMMMMMMNho. - .:+syhhhhys+:. diff --git a/ascii/distro/apricity b/ascii/distro/apricity deleted file mode 100644 index eada9d6d..00000000 --- a/ascii/distro/apricity +++ /dev/null @@ -1,18 +0,0 @@ -${c2} ./o- - ``...`` `:. -/: - `-+ymNMMMMMNmho-` :sdNNm/ - `+dMMMMMMMMMMMMMMMmo` sh:.:::- - /mMMMMMMMMMMMMMMMMMMMm/`sNd/ - oMMMMMMMMMMMMMMMMMMMMMMMs -` -:MMMMMMMMMMMMMMMMMMMMMMMMM/ -NMMMMMMMMMMMMMMMMMMMMMMMMMd -MMMMMMMmdmMMMMMMMMMMMMMMMMd -MMMMMMy` .mMMMMMMMMMMMmho:` -MMMMMMNo/sMMMMMMMNdy+-.`-/ -MMMMMMMMMMMMNdy+:.`.:ohmm: -MMMMMMMmhs+-.`.:+ymNMMMy. -MMMMMM/`.-/ohmNMMMMMMy- -MMMMMMNmNNMMMMMMMMmo. -MMMMMMMMMMMMMMMms:` -MMMMMMMMMMNds/. -dhhyys+/-` diff --git a/ascii/distro/arch b/ascii/distro/arch deleted file mode 100644 index 3de103bb..00000000 --- a/ascii/distro/arch +++ /dev/null @@ -1,19 +0,0 @@ -${c1} -` - .o+` - `ooo/ - `+oooo: - `+oooooo: - -+oooooo+: - `/:-:++oooo+: - `/++++/+++++++: - `/++++++++++++++: - `/+++o${c2}oooooooo${c1}oooo/` -${c2} ${c1}./${c2}ooosssso++osssssso${c1}+` -${c2} .oossssso-````/ossssss+` - -osssssso. :ssssssso. - :osssssss/ osssso+++. - /ossssssss/ +ssssooo/- - `/ossssso+/:- -:/+osssso+- - `+sso+:-` `.-/+oso: - `++:. `-/+/ - .` `/ diff --git a/ascii/distro/arch_old b/ascii/distro/arch_old deleted file mode 100644 index dbd6cefa..00000000 --- a/ascii/distro/arch_old +++ /dev/null @@ -1,16 +0,0 @@ -${c1} __ - _=(SDGJT=_ - _GTDJHGGFCVS) - ,GTDJGGDTDFBGX0 -${c1} JDJDIJHRORVFSBSVL${c2}-=+=,_ -${c1} IJFDUFHJNXIXCDXDSV,${c2} "DEBL -${c1} [LKDSDJTDU=OUSCSBFLD.${c2} '?ZWX, -${c1} ,LMDSDSWH' `DCBOSI${c2} DRDS], -${c1} SDDFDFH' !YEWD,${c2} )HDROD -${c1} !KMDOCG &GSU|${c2}\_GFHRGO\' -${c1} HKLSGP'${c2} __${c1}\TKM0${c2}\GHRBV)' -${c1}JSNRVW'${c2} __+MNAEC${c1}\IOI,${c2}\BN' -${c1}HELK['${c2} __,=OFFXCBGHC${c1}\FD) -${c1}?KGHE ${c2}\_-#DASDFLSV='${c1} 'EF -'EHTI !H - `0F' '! diff --git a/ascii/distro/arch_small b/ascii/distro/arch_small deleted file mode 100644 index 26757617..00000000 --- a/ascii/distro/arch_small +++ /dev/null @@ -1,7 +0,0 @@ -${c1} /\ - /^^\ - /\ \ - /${c2} __ \ - / ( ) \ - / __| |__\\\ -/// \\\\\ diff --git a/ascii/distro/arch_xferience b/ascii/distro/arch_xferience deleted file mode 100644 index f1757f92..00000000 --- a/ascii/distro/arch_xferience +++ /dev/null @@ -1,19 +0,0 @@ -${c1} ``--:::::::-.` - .-/+++ooooooooo+++:-` - `-/+oooooooooooooooooo++:. - -/+oooooo/+ooooooooo+/ooo++:` - `/+oo++oo. .+oooooo+.-: +:-o+- - `/+o/. -o. :oooooo+ ```:.+oo+- -`:+oo- -/` :oooooo+ .`-`+oooo/. -.+ooo+. .` `://///+-+..oooooo+:` --+ooo:` ``.-+oooooo+/` --+oo/` :+oooo/. -.+oo: ..-/. . -+oo+/` -`/++- -:::++::/. -+oo+- - ./o: `:///+- `./ooo+:` - .++- `` /-` -:/+oooo+:` - .:+/:`` `-:ooooooo++- - ./+o+//:...../+oooooooo++:` - `:/++ooooooooooooo++/-` - `.-//++++++//:-.` - `````` diff --git a/ascii/distro/archbox b/ascii/distro/archbox deleted file mode 100644 index a35a15c6..00000000 --- a/ascii/distro/archbox +++ /dev/null @@ -1,19 +0,0 @@ -${c1} ...:+oh/:::.. - ..-/oshhhhhh` `::::-. - .:/ohhhhhhhhhhhh` `-::::. - .+shhhhhhhhhhhhhhhhh` `.::-. - /`-:+shhhhhhhhhhhhhh` .-/+shh - / .:/ohhhhhhhhh` .:/ohhhhhhhh - / `-:+shhh` ..:+shhhhhhhhhhhh - / .:ohhhhhhhhhhhhhhhhhhh - / `hhhhhhhhhhhhhhhhhhhh - / `hhhhhhhhhhhhhhhhhhhh - / `hhhhhhhhhhhhhhhhhhhh - / `hhhhhhhhhhhhhhhhhhhh - / .+o+ `hhhhhhhhhhhhhhhhhhhh - / -hhhhh `hhhhhhhhhhhhhhhhhhhh - / ohhhhho `hhhhhhhhhhhhhhhhhhhh - /:::+`hhhhoos` `hhhhhhhhhhhhhhhhhs+` - `--/:` /: `hhhhhhhhhhhho/- - -/:. `hhhhhhs+:-` - ::::/ho/-` diff --git a/ascii/distro/archlabs b/ascii/distro/archlabs deleted file mode 100644 index 74f8a026..00000000 --- a/ascii/distro/archlabs +++ /dev/null @@ -1,21 +0,0 @@ -${c1} 'c' - 'kKk, - .dKKKx. - .oKXKXKd. - .l0XXXXKKo. - c0KXXXXKX0l. - :0XKKOxxOKX0l. - :OXKOc. .c0XX0l. - :OK0o. ${c4}...${c1}'dKKX0l. - :OX0c ${c4};xOx'${c1}'dKXX0l. - :0KKo.${c4}.o0XXKd'.${c1}lKXX0l. - c0XKd.${c4}.oKXXXXKd..${c1}oKKX0l. - .c0XKk;${c4}.l0K0OO0XKd..${c1}oKXXKo. - .l0XXXk:${c4},dKx,.'l0XKo.${c1}.kXXXKo. - .o0XXXX0d,${c4}:x; .oKKx'${c1}.dXKXXKd. - .oKXXXXKK0c.${c4};. :00c'${c1}cOXXXXXKd. - .dKXXXXXXXXk,${c4}. cKx'${c1}'xKXXXXXXKx' - 'xKXXXXK0kdl:. ${c4}.ok; ${c1}.cdk0KKXXXKx' - 'xKK0koc,.. ${c4}'c, ${c1} ..,cok0KKk, - ,xko:'. ${c4}.. ${c1} .':okx; - .,'. .',. diff --git a/ascii/distro/archmerge b/ascii/distro/archmerge deleted file mode 100644 index c849851e..00000000 --- a/ascii/distro/archmerge +++ /dev/null @@ -1,20 +0,0 @@ -${c1} y: - sMN- - +MMMm` - /MMMMMd` - :NMMMMMMy - -NMMMMMMMMs - .NMMMMMMMMMM+ - .mMMMMMMMMMMMM+ - oNMMMMMMMMMMMMM+ - `+:-+NMMMMMMMMMMMM+ - .sNMNhNMMMMMMMMMMMM/ - `hho/sNMMMMMMMMMMMMMMM/ - `.`omMMmMMMMMMMMMMMMMMMM+ - .mMNdshMMMMd+::oNMMMMMMMMMo - .mMMMMMMMMM+ `yMMMMMMMMMs - .NMMMMMMMMM/ yMMMMMMMMMy - -NMMMMMMMMMh `mNMMMMMMMMd` - /NMMMNds+:.` `-/oymMMMm. - +Mmy/. `:smN: -/+. -o. diff --git a/ascii/distro/artix b/ascii/distro/artix deleted file mode 100644 index 3ac30d3d..00000000 --- a/ascii/distro/artix +++ /dev/null @@ -1,19 +0,0 @@ -${c1} d${c2}c. -${c1} x${c2}dc. -${c1} '.${c4}.${c1} d${c2}dlc. -${c1} c${c2}0d:${c1}o${c2}xllc; -${c1} :${c2}0ddlolc,lc, -${c1} :${c1}ko${c4}.${c1}:${c2}0ddollc..dlc. -${c1} ;${c1}K${c2}kxoOddollc' cllc. -${c1} ,${c1}K${c2}kkkxdddllc, ${c4}.${c2}lll: -${c1} ,${c1}X${c2}kkkddddlll;${c3}...';${c1}d${c2}llll${c3}dxk: -${c1} ,${c1}X${c2}kkkddddllll${c3}oxxxddo${c2}lll${c3}oooo, -${c3} xxk${c1}0${c2}kkkdddd${c1}o${c2}lll${c1}o${c3}ooooooolooooc;${c1}. -${c3} ddd${c2}kkk${c1}d${c2}ddd${c1}ol${c2}lc:${c3}:;,'.${c3}... .${c2}lll; -${c1} .${c3}xd${c1}x${c2}kk${c1}xd${c2}dl${c1}'cl:${c4}. ${c2}.llc, -${c1} .${c1}0${c2}kkkxddl${c4}. ${c2};'${c4}. ${c2};llc. -${c1} .${c1}K${c2}Okdcddl${c4}. ${c2}cllc${c4}. -${c1} 0${c2}Okd''dc. .cll; -${c1} k${c2}Okd' .llc, -${c1} d${c2}Od, 'lc. -${c1} :,${c4}. ${c2}... diff --git a/ascii/distro/arya b/ascii/distro/arya deleted file mode 100644 index 7d603e20..00000000 --- a/ascii/distro/arya +++ /dev/null @@ -1,15 +0,0 @@ -${c1} `oyyy/${c2}-yyyyyy+ -${c1} -syyyy/${c2}-yyyyyy+ -${c1} .syyyyy/${c2}-yyyyyy+ -${c1} :yyyyyy/${c2}-yyyyyy+ -${c1} `/ :yyyyyy/${c2}-yyyyyy+ -${c1} .+s :yyyyyy/${c2}-yyyyyy+ -${c1} .oys :yyyyyy/${c2}-yyyyyy+ -${c1} -oyys :yyyyyy/${c2}-yyyyyy+ -${c1} :syyys :yyyyyy/${c2}-yyyyyy+ -${c1} /syyyys :yyyyyy/${c2}-yyyyyy+ -${c1} +yyyyyys :yyyyyy/${c2}-yyyyyy+ -${c1} .oyyyyyyo. :yyyyyy/${c2}-yyyyyy+ --------- -${c1} .syyyyyy+` :yyyyyy/${c2}-yyyyy+-+syyyyyyyy -${c1} -syyyyyy/ :yyyyyy/${c2}-yyys:.syyyyyyyyyy -${c1}:syyyyyy/ :yyyyyy/${c2}-yyo.:syyyyyyyyyyy diff --git a/ascii/distro/bitrig b/ascii/distro/bitrig deleted file mode 100644 index 8daebf5f..00000000 --- a/ascii/distro/bitrig +++ /dev/null @@ -1,18 +0,0 @@ -${c1} `hMMMMN+ - -MMo-dMd` - oMN- oMN` - yMd /NM: - .mMmyyhMMs - :NMMMhsmMh - +MNhNNoyMm- - hMd.-hMNMN: - mMmsssmMMMo - .MMdyyhNMMMd - oMN.`/dMddMN` - yMm/hNm+./MM/ -.dMMMmo.``.NMo -:NMMMNmmmmmMMh -/MN/-------oNN: -hMd. .dMh -sm/ /ms - diff --git a/ascii/distro/blag b/ascii/distro/blag deleted file mode 100644 index 047444cc..00000000 --- a/ascii/distro/blag +++ /dev/null @@ -1,17 +0,0 @@ -${c1} d - ,MK: - xMMMX: - .NMMMMMX; - lMMMMMMMM0clodkO0KXWW: - KMMMMMMMMMMMMMMMMMMX' - .;d0NMMMMMMMMMMMMMMMMMMK. - .;dONMMMMMMMMMMMMMMMMMMMMMMx -'dKMMMMMMMMMMMMMMMMMMMMMMMMl - .:xKWMMMMMMMMMMMMMMMMMMM0. - .:xNMMMMMMMMMMMMMMMMMK. - lMMMMMMMMMMMMMMMMMMK. - ,MMMMMMMMWkOXWMMMMMM0 - .NMMMMMNd. `':ldko - OMMMK: - oWk, - ;: diff --git a/ascii/distro/blankon b/ascii/distro/blankon deleted file mode 100644 index 43bbd786..00000000 --- a/ascii/distro/blankon +++ /dev/null @@ -1,17 +0,0 @@ -${c2} `./ohdNMMMMNmho+.` ${c1} .+oo:` -${c2} -smMMMMMMMMMMMMMMMMmy-` ${c1}`yyyyy+ -${c2} `:dMMMMMMMMMMMMMMMMMMMMMMd/` ${c1}`yyyyys -${c2} .hMMMMMMMNmhso/++symNMMMMMMMh- ${c1}`yyyyys -${c2} -mMMMMMMms-` -omMMMMMMN-${c1}.yyyyys -${c2}.mMMMMMMy. .yMMMMMMm:${c1}yyyyys -${c2}sMMMMMMy `sMMMMMMh${c1}yyyyys -${c2}NMMMMMN: .NMMMMMN${c1}yyyyys -${c2}MMMMMMm. NMMMMMN${c1}yyyyys -${c2}hMMMMMM+ /MMMMMMN${c1}yyyyys -${c2}:NMMMMMN: :mMMMMMM+${c1}yyyyys -${c2} oMMMMMMNs- .sNMMMMMMs.${c1}yyyyys -${c2} +MMMMMMMNho:.` `.:ohNMMMMMMNo ${c1}`yyyyys -${c2} -hMMMMMMMMNNNmmNNNMMMMMMMMh- ${c1}`yyyyys -${c2} :yNMMMMMMMMMMMMMMMMMMNy:` ${c1}`yyyyys -${c2} .:sdNMMMMMMMMMMNds/. ${c1}`yyyyyo -${c2} `.:/++++/:.` ${c1}:oys+. diff --git a/ascii/distro/bsd b/ascii/distro/bsd deleted file mode 100644 index 91c9a7ae..00000000 --- a/ascii/distro/bsd +++ /dev/null @@ -1,19 +0,0 @@ -${c1} , , - /( )` - \ \___ / | - /- _ `-/ ' - (${c2}/\/ \ ${c1}\ /\ - ${c2}/ / | ` ${c1}\ - ${c3}O O ${c2}) ${c1}/ | - ${c2}`-^--'${c1}`< ' - (_.) _ ) / - `.___/` / - `-----' / -${c4}<----. __ / __ \ -${c4}<----|====${c1}O)))${c4}==${c1}) \) /${c4}====| -<----' ${c1}`--' `.__,' \ - | | - \ / /\ - ${c5}______${c1}( (_ / \______/ - ${c5},' ,-----' | - `--{__________) diff --git a/ascii/distro/bunsenlabs b/ascii/distro/bunsenlabs deleted file mode 100644 index 93796823..00000000 --- a/ascii/distro/bunsenlabs +++ /dev/null @@ -1,20 +0,0 @@ -${c1} `++ - -yMMs - `yMMMMN` - -NMMMMMMm. - :MMMMMMMMMN- - .NMMMMMMMMMMM/ - yMMMMMMMMMMMMM/ -`MMMMMMNMMMMMMMN. --MMMMN+ /mMMMMMMy --MMMm` `dMMMMMM -`MMN. .NMMMMM. - hMy yMMMMM` - -Mo +MMMMN - /o +MMMMs - +MMMN` - hMMM: - `NMM/ - +MN: - mh. - -/ diff --git a/ascii/distro/calculate b/ascii/distro/calculate deleted file mode 100644 index a6b256c4..00000000 --- a/ascii/distro/calculate +++ /dev/null @@ -1,20 +0,0 @@ -${c1} ...... - ,,+++++++,. - .,,,....,,,${c2}+**+,,.${c1} - ............,${c2}++++,,,${c1} - ............... - ......,,,........ - .....+*#####+,,,*+. - .....,*###############,..,,,,,,.. - ......,*#################*..,,,,,..,,,.. - .,,....*####################+***+,,,,...,++, - .,,..,..*#####################*, - ,+,.+*..*#######################. - ,+,,+*+..,########################* -.,++++++. ..+##**###################+ -..... ..+##***#################*. - .,.*#*****##############*. - ..,,*********#####****+. - ${c2}.,++*****+++${c1}*****************${c2}+++++,.${c1} - ${c2},++++++**+++++${c1}***********${c2}+++++++++,${c1} - ${c2}.,,,,++++,.. .,,,,,.....,+++,.,,${c1} \ No newline at end of file diff --git a/ascii/distro/centos b/ascii/distro/centos deleted file mode 100644 index e56aa5dd..00000000 --- a/ascii/distro/centos +++ /dev/null @@ -1,19 +0,0 @@ -${c1} .. - .PLTJ. - <><><><> - ${c2}KKSSV' 4KKK ${c1}LJ${c4} KKKL.'VSSKK - ${c2}KKV' 4KKKKK ${c1}LJ${c4} KKKKAL 'VKK - ${c2}V' ' 'VKKKK ${c1}LJ${c4} KKKKV' ' 'V - ${c2}.4MA.' 'VKK ${c1}LJ${c4} KKV' '.4Mb. -${c4} . ${c2}KKKKKA.' 'V ${c1}LJ${c4} V' '.4KKKKK ${c3}. -${c4} .4D ${c2}KKKKKKKA.'' ${c1}LJ${c4} ''.4KKKKKKK ${c3}FA. -${c4} -${c4} 'VD ${c3}KKKKKKKK'.. ${c2}LJ ${c1}..'KKKKKKKK ${c3}FV -${c4} ' ${c3}VKKKKK'. .4 ${c2}LJ ${c1}K. .'KKKKKV ${c3}' - ${c3} 'VK'. .4KK ${c2}LJ ${c1}KKA. .'KV' - ${c3}A. . .4KKKK ${c2}LJ ${c1}KKKKA. . .4 - ${c3}KKA. 'KKKKK ${c2}LJ ${c1}KKKKK' .4KK - ${c3}KKSSA. VKKK ${c2}LJ ${c1}KKKV .4SSKK -${c2} <><><><> - 'MKKM' - '' diff --git a/ascii/distro/chakra b/ascii/distro/chakra deleted file mode 100644 index 28227b92..00000000 --- a/ascii/distro/chakra +++ /dev/null @@ -1,18 +0,0 @@ -${c1} _ _ _ "kkkkkkkk. - ,kkkkkkkk., 'kkkkkkkkk, - ,kkkkkkkkkkkk., 'kkkkkkkkk. - ,kkkkkkkkkkkkkkkk,'kkkkkkkk, - ,kkkkkkkkkkkkkkkkkkk'kkkkkkk. - "''"''',;::,,"''kkk''kkkkk; __ - ,kkkkkkkkkk, "k''kkkkk' ,kkkk - ,kkkkkkk' ., ' .: 'kkkk',kkkkkk - ,kkkkkkkk'.k' , ,kkkk;kkkkkkkkk - ,kkkkkkkk';kk 'k "'k',kkkkkkkkkkkk -.kkkkkkkkk.kkkk.'kkkkkkkkkkkkkkkkkk' -;kkkkkkkk''kkkkkk;'kkkkkkkkkkkkk'' -'kkkkkkk; 'kkkkkkkk.,""''"''"" - ''kkkk; 'kkkkkkkkkk., - ';' 'kkkkkkkkkkkk., - ';kkkkkkkkkk' - ';kkkkkk' - "''" diff --git a/ascii/distro/chaletos b/ascii/distro/chaletos deleted file mode 100644 index 6473a5cc..00000000 --- a/ascii/distro/chaletos +++ /dev/null @@ -1,20 +0,0 @@ -${c1} `.//+osso+/:`` - `/sdNNmhyssssydmNNdo:` - :hNmy+-` .-+hNNs- - /mMh/` `+:` `+dMd: - .hMd- -sNNMNo. /yyy /mMs` - -NM+ `/dMd/--omNh::dMM `yMd` - .NN+ .sNNs:/dMNy:/hNmo/s yMd` - hMs `/hNd+-smMMMMMMd+:omNy- `dMo -:NM. .omMy:/hNMMMMMMMMMMNy:/hMd+` :Md` -/Md` `sm+.omMMMMMMMMMMMMMMMMd/-sm+ .MN: -/Md` MMMMMMMMMMMMMMMMMMMN .MN: -:NN. MMMMMMm....--NMMMMMN -Mm. -`dMo MMMMMMd mMMMMMN hMs - -MN: MMMMMMd mMMMMMN oMm` - :NM: MMMMMMd mMMMMMN +Mm- - -mMy. mmmmmmh dmmmmmh -hMh. - oNNs- :yMm/ - .+mMdo:` `:smMd/` - -ohNNmhsoo++osshmNNh+. - `./+syyhhyys+:`` diff --git a/ascii/distro/chapeau b/ascii/distro/chapeau deleted file mode 100644 index 6107817c..00000000 --- a/ascii/distro/chapeau +++ /dev/null @@ -1,18 +0,0 @@ -${c1} .-/-. - ////////. - ////////${c2}y+${c1}//. - ////////${c2}mMN${c1}/////. - ////////${c2}mMN+${c1}////////. - ////////////////////////. - /////////+${c2}shhddhyo${c1}+////////. - ////////${c2}ymMNmdhhdmNNdo${c1}///////. -///////+${c2}mMms${c1}////////${c2}hNMh${c1}///////. -///////${c2}NMm+${c1}//////////${c2}sMMh${c1}/////// -//////${c2}oMMNmmmmmmmmmmmmMMm${c1}/////// -//////${c2}+MMmssssssssssssss+${c1}/////// -`//////${c2}yMMy${c1}//////////////////// - `//////${c2}smMNhso++oydNm${c1}//////// - `///////${c2}ohmNMMMNNdy+${c1}/////// - `//////////${c2}++${c1}////////// - `////////////////. - -////////- diff --git a/ascii/distro/chrome b/ascii/distro/chrome deleted file mode 100644 index 951bf190..00000000 --- a/ascii/distro/chrome +++ /dev/null @@ -1,18 +0,0 @@ -${c2} .,:loool:,. - .,coooooooooooooc,. - .,lllllllllllllllllllll,. - ;ccccccccccccccccccccccccc; -${c1} '${c2}ccccccccccccccccccccccccccccc. -${c1} ,oo${c2}c::::::::okO${c5}000${c3}0OOkkkkkkkkkkk: -${c1}.ooool${c2};;;;:x${c5}K0${c4}kxxxxxk${c5}0X${c3}K0000000000. -${c1}:oooool${c2};,;O${c5}K${c4}ddddddddddd${c5}KX${c3}000000000d -${c1}lllllool${c2};l${c5}N${c4}dllllllllllld${c5}N${c3}K000000000 -${c1}lllllllll${c2}o${c5}M${c4}dccccccccccco${c5}W${c3}K000000000 -${c1};cllllllllX${c5}X${c4}c:::::::::c${c5}0X${c3}000000000d -${c1}.ccccllllllO${c5}Nk${c4}c;,,,;cx${c5}KK${c3}0000000000. -${c1} .cccccclllllxOO${c5}OOO${c1}Okx${c3}O0000000000; -${c1} .:ccccccccllllllllo${c3}O0000000OOO, -${c1} ,:ccccccccclllcd${c3}0000OOOOOOl. -${c1} '::ccccccccc${c3}dOOOOOOOkx:. -${c1} ..,::cccc${c3}xOOOkkko;. -${c1} ..,:${c3}dOkxl:. diff --git a/ascii/distro/cloveros b/ascii/distro/cloveros deleted file mode 100644 index 9996c77c..00000000 --- a/ascii/distro/cloveros +++ /dev/null @@ -1,20 +0,0 @@ -${c1} `omo``omo` - `oNMMMNNMMMNo` - `oNMMMMMMMMMMMMNo` - oNMMMMMMMMMMMMMMMMNo - `sNMMMMMMMMMMMMMMNs` - `omo` `sNMMMMMMMMMMNs` `omo` - `oNMMMNo` `sNMMMMMMNs` `oNMMMNo` - `oNMMMMMMMNo` `oNMMNs` `oNMMMMMMMNo` -oNMMMMMMMMMMMNo` `sy` `oNMMMMMMMMMMMNo -`sNMMMMMMMMMMMMNo.${c2}oNNs${c1}.oNMMMMMMMMMMMMNs` -`oNMMMMMMMMMMMMNs.${c2}oNNs${c1}.oNMMMMMMMMMMMMNo` -oNMMMMMMMMMMMNs` `sy` `oNMMMMMMMMMMMNo - `oNMMMMMMMNs` `oNMMNo` `oNMMMMMMMNs` - `oNMMMNs` `sNMMMMMMNs` `oNMMMNs` - `oNs` `sNMMMMMMMMMMNs` `oNs` - `sNMMMMMMMMMMMMMMNs` - +NMMMMMMMMMMMMMMMMNo - `oNMMMMMMMMMMMMNo` - `oNMMMNNMMMNs` - `omo``oNs` diff --git a/ascii/distro/coreos b/ascii/distro/coreos deleted file mode 100644 index 605d5050..00000000 --- a/ascii/distro/coreos +++ /dev/null @@ -1,20 +0,0 @@ -${c1} ..... - .';:cccccccc:;'. - ':ccccclc${c3}lllllllll${c1}cc:. - .;cccccccc${c3}lllllllllllllll${c1}c, - ;clllccccc${c3}llllllllllllllllll${c1}c, - .cllclccccc${c3}lllll${c2}lll${c3}llllllllllll${c1}c: - ccclclcccc${c3}cllll${c2}kWMMNKk${c3}llllllllll${c1}c: - :ccclclcccc${c3}llll${c2}oWMMMMMMWO${c3}lllllllll${c1}c, -.ccllllllccc${c3}clll${c2}OMMMMMMMMM0${c3}lllllllll${c1}c -.lllllclcccc${c3}llll${c2}KMMMMMMMMMMo${c3}llllllll${c1}c. -.lllllllcccc${c3}clll${c2}KMMMMMMMMN0${c3}lllllllll${c1}c. -.cclllllcccc${c3}lllld${c2}xkkxxdo${c3}llllllllllc${c1}lc - :cccllllllcccc${c3}lllccllllcclccc${c1}cccccc; - .ccclllllllcccccccc${c3}lll${c1}ccccclccccccc - .cllllllllllclcccclccclccllllcllc - :cllllllllccclcllllllllllllcc; - .cccccccccccccclcccccccccc:. - .;cccclccccccllllllccc,. - .';ccccclllccc:;.. - ..... diff --git a/ascii/distro/crux b/ascii/distro/crux deleted file mode 100644 index b5af7baa..00000000 --- a/ascii/distro/crux +++ /dev/null @@ -1,18 +0,0 @@ -${c1} odddd - oddxkkkxxdoo - ddcoddxxxdoool - xdclodod olol - xoc xdd olol - xdc ${c2}k00${c1}Okdlol - xxd${c2}kOKKKOkd${c1}ldd - xdco${c2}xOkdlo${c1}dldd - ddc:cl${c2}lll${c1}oooodo - odxxdd${c3}xkO000kx${c1}ooxdo - oxdd${c3}x0NMMMMMMWW0od${c1}kkxo - oooxd${c3}0WMMMMMMMMMW0o${c1}dxkx -docldkXW${c3}MMMMMMMWWN${c1}Odolco -xx${c2}dx${c1}kxxOKN${c3}WMMWN${c1}0xdoxo::c -${c2}xOkkO${c1}0oo${c3}odOW${c2}WW${c1}XkdodOxc:l -${c2}dkkkxkkk${c3}OKX${c2}NNNX0Oxx${c1}xc:cd -${c2} odxxdx${c3}xllod${c2}ddooxx${c1}dc:ldo -${c2} lodd${c1}dolccc${c2}ccox${c1}xoloo diff --git a/ascii/distro/crux_small b/ascii/distro/crux_small deleted file mode 100644 index 4b64001d..00000000 --- a/ascii/distro/crux_small +++ /dev/null @@ -1,7 +0,0 @@ -${c1} ___ - (${c3}.· ${c1}| - (${c2}<> ${c1}| - / ${c3}__ ${c1}\\ - ( ${c3}/ \\ ${c1}/| -${c2}_${c1}/\\ ${c3}__)${c1}/${c2}_${c1}) -${c2}\/${c1}-____${c2}\/ diff --git a/ascii/distro/debian b/ascii/distro/debian deleted file mode 100644 index df88d079..00000000 --- a/ascii/distro/debian +++ /dev/null @@ -1,17 +0,0 @@ -${c2} _,met$$$$$gg. - ,g$$$$$$$$$$$$$$$P. - ,g$$P" """Y$$.". - ,$$P' `$$$. -',$$P ,ggs. `$$b: -`d$$' ,$P"' ${c1}.${c2} $$$ - $$P d$' ${c1},${c2} $$P - $$: $$. ${c1}-${c2} ,d$$' - $$; Y$b._ _,d$P' - Y$$. ${c1}`.${c2}`"Y$$$$P"' -${c2} `$$b ${c1}"-.__ -${c2} `Y$$ - `Y$$. - `$$b. - `Y$$b. - `"Y$b._ - `""" diff --git a/ascii/distro/debian_small b/ascii/distro/debian_small deleted file mode 100644 index 64cbb56c..00000000 --- a/ascii/distro/debian_small +++ /dev/null @@ -1,6 +0,0 @@ - ${c1}_____ - / __ \\ -| / | -| \\___- --_ - --_ diff --git a/ascii/distro/deepin b/ascii/distro/deepin deleted file mode 100644 index a44f4dad..00000000 --- a/ascii/distro/deepin +++ /dev/null @@ -1,18 +0,0 @@ -${c1} ............ - .';;;;;. .,;,. - .,;;;;;;;. ';;;;;;;. - .;::::::::' .,::;;,''''',. - ,'.:::::::: .;;'. '; - ;' 'cccccc, ,' :: '.. .: - ,, :ccccc. ;: .c, '' :. ,; -.l. cllll' ., .lc :; .l' l. -.c :lllc ;cl: .l' .ll. :' -.l 'looc. . ,o: 'oo' c, -.o. .:ool::coc' .ooo' o. - :: ..... .;dddo ;c - l:... .';lddddo. ,o - lxxxxxdoolllodxxxxxxxxxc :l - ,dxxxxxxxxxxxxxxxxxxl. 'o, - ,dkkkkkkkkkkkkko;. .;o; - .;okkkkkdl;. .,cl:. - .,:cccccccc:,. diff --git a/ascii/distro/desaos b/ascii/distro/desaos deleted file mode 100644 index 81d8b55e..00000000 --- a/ascii/distro/desaos +++ /dev/null @@ -1,16 +0,0 @@ -${c1}███████████████████████ -███████████████████████ -███████████████████████ -███████████████████████ -████████ ███████ -████████ ███████ -████████ ███████ -████████ ███████ -████████ ███████ -████████ ███████ -████████ ███████ -██████████████████████████████ -██████████████████████████████ -████████████████████████ -████████████████████████ -████████████████████████ diff --git a/ascii/distro/devuan b/ascii/distro/devuan deleted file mode 100644 index 4173782f..00000000 --- a/ascii/distro/devuan +++ /dev/null @@ -1,15 +0,0 @@ -${c1} ..,,;;;::;,.. - `':ddd;:,. - `'dPPd:,. - `:b$$b`. - 'P$$$d` - .$$$$$` - ;$$$$$P - .:P$$$$$$` - .,:b$$$$$$$;' - .,:dP$$$$$$$$b:' - .,:;db$$$$$$$$$$Pd'` - ,db$$$$$$$$$$$$$$b:'` -:$$$$$$$$$$$$b:'` - `$$$$$bd:''` - `'''` diff --git a/ascii/distro/dracos b/ascii/distro/dracos deleted file mode 100644 index 3eb2a70b..00000000 --- a/ascii/distro/dracos +++ /dev/null @@ -1,13 +0,0 @@ -${c1} `-:/- - -os: - -os/` - :sy+-` - `/yyyy+. - `+yyyyo- - `/yyyys: -`:osssoooo++- +yyyyyy/` - ./yyyyyyo yo`:syyyy+. - -oyyy+ +- :yyyyyo- - `:sy: `. `/yyyyys: - ./o/.` .oyyso+oo:` - :+oo+//::::///:-.` `.` diff --git a/ascii/distro/dragonflybsd b/ascii/distro/dragonflybsd deleted file mode 100644 index 7ccc14bc..00000000 --- a/ascii/distro/dragonflybsd +++ /dev/null @@ -1,15 +0,0 @@ -${c2},--, ${c1}| ${c2},--, -${c2}| `-, ${c1},^, ${c2},-' | -${c2} `, `-, ${c3}(/ \) ${c2},-' ,' -${c2} `-, `-,${c1}/ \${c2},-' ,-' -${c2} `------${c1}( )${c2}------' -${c2} ,----------${c1}( )${c2}----------, -${c2} | _,-${c1}( )${c2}-,_ | -${c2} `-,__,-' ${c1}\ /${c2} `-,__,-' -${c1} | | - | | - | | - | | - | | - | | - `|' diff --git a/ascii/distro/dragonflybsd_old b/ascii/distro/dragonflybsd_old deleted file mode 100644 index 3276d4f0..00000000 --- a/ascii/distro/dragonflybsd_old +++ /dev/null @@ -1,18 +0,0 @@ - ${c1} | - .-. - ${c3} ()${c1}I${c3}() - ${c1} "==.__:-:__.==" - "==.__/~|~\__.==" - "==._( Y )_.==" - ${c2}.-'~~""~=--...,__${c1}\/|\/${c2}__,...--=~""~~'-. -( ..=${c1}\\=${c1}/${c2}=.. ) - `'-. ,.-"`;${c1}/=\\${c2};"-.,_ .-'` - `~"-=-~` .-~` ${c1}|=|${c2} `~-. `~-=-"~` - .-~` /${c1}|=|${c2}\ `~-. - .~` / ${c1}|=|${c2} \ `~. - .-~` .' ${c1}|=|${c2} `. `~-. - (` _,.-="` ${c1} |=|${c2} `"=-.,_ `) - `~"~"` ${c1} |=|${c2} `"~"~` - ${c1} /=\\ - \\=/ - ^ diff --git a/ascii/distro/dragonflybsd_small b/ascii/distro/dragonflybsd_small deleted file mode 100644 index 3a48a925..00000000 --- a/ascii/distro/dragonflybsd_small +++ /dev/null @@ -1,4 +0,0 @@ -${c2}(\${c3}"${c2}/) -${c2}(/${c1}|${c2}\) -${c1} | - | diff --git a/ascii/distro/elementary b/ascii/distro/elementary deleted file mode 100644 index 8614c746..00000000 --- a/ascii/distro/elementary +++ /dev/null @@ -1,17 +0,0 @@ -${c2} eeeeeeeeeeeeeeeee - eeeeeeeeeeeeeeeeeeeeeee - eeeee eeeeeeeeeeee eeeee - eeee eeeee eee eeee - eeee eeee eee eeee -eee eee eee eee -eee eee eee eee -ee eee eeee eeee -ee eee eeeee eeeeee -ee eee eeeee eeeee ee -eee eeee eeeeee eeeee eee -eee eeeeeeeeee eeeeee eee - eeeeeeeeeeeeeeeeeeeeeeee eeeee - eeeeeeee eeeeeeeeeeee eeee - eeeee eeeee - eeeeeee eeeeeee - eeeeeeeeeeeeeeeee diff --git a/ascii/distro/endless b/ascii/distro/endless deleted file mode 100644 index fbff54b9..00000000 --- a/ascii/distro/endless +++ /dev/null @@ -1,21 +0,0 @@ -${c1} `:+yhmNMMMMNmhy+:` - -odMMNhso//////oshNMMdo- - /dMMh+. .+hMMd/ - /mMNo` `oNMm: - `yMMo` `oMMy` - `dMN- -NMd` - hMN. .NMh -/MM/ -os` /MM/ -dMm `smNmmhs/- `:sNMd+ `` mMd -MMy oMd--:+yMMMMMNo.:ohmMMMNy` yMM -MMy -NNyyhmMNh+oNMMMMMy:. dMo yMM -dMm `/++/-``/yNNh+/sdNMNddMm- mMd -/MM/ `dNy: `-::- /MM/ - hMN. .NMh - `dMN- -NMd` - `yMMo` `oMMy` - /mMNo` `oNMm/ - /dMMh+. .+hMMd/ - -odMMNhso//////oshNMMdo- - `:+yhmNMMMMNmhy+:` - diff --git a/ascii/distro/exherbo b/ascii/distro/exherbo deleted file mode 100644 index edacf81a..00000000 --- a/ascii/distro/exherbo +++ /dev/null @@ -1,22 +0,0 @@ -${c2} , -OXo. -NXdX0: .cok0KXNNXXK0ko:. -KX '0XdKMMK;.xMMMk, .0MMMMMXx; ... -'NO..xWkMMx kMMM cMMMMMX,NMWOxOXd. - cNMk NK .oXM. OMMMMO. 0MMNo kW. - lMc o: ., .oKNk; ;NMMWlxW' - ;Mc .. .,,' .0M${c1}g;${c2}WMN'dWMMMMMMO - XX ,WMMMMW. cM${c1}cfli${c2}WMKlo. .kMk -.Mo .WM${c1}GD${c2}MW. XM${c1}WO0${c2}MMk oMl -,M: ,XMMWx::,''oOK0x; NM. -'Ml ,kNKOxxxxxkkO0XXKOd:. oMk - NK .0Nxc${c3}:::::::::::::::${c2}fkKNk, .MW - ,Mo .NXc${c3}::${c2}qXWXb${c3}::::::::::${c2}oo${c3}::${c2}lNK. .MW - ;Wo oMd${c3}:::${c2}oNMNP${c3}::::::::${c2}oWMMMx${c3}:${c2}c0M; lMO - 'NO;W0c${c3}:::::::::::::::${c2}dMMMMO${c3}::${c2}lMk .WM' - xWONXdc${c3}::::::::::::::${c2}oOOo${c3}::${c2}lXN. ,WMd - 'KWWNXXK0Okxxo,${c3}:::::::${c2},lkKNo xMMO - :XMNxl,';:lodxkOO000Oxc. .oWMMo - 'dXMMXkl;,. .,o0MMNo' - ':d0XWMMMMWNNNNMMMNOl' - ':okKXWNKkl' diff --git a/ascii/distro/fedora b/ascii/distro/fedora deleted file mode 100644 index f0ba391b..00000000 --- a/ascii/distro/fedora +++ /dev/null @@ -1,17 +0,0 @@ -${c1} /:-------------:\\ - :-------------------:: - :-----------${c2}/shhOHbmp${c1}---:\\ - /-----------${c2}omMMMNNNMMD ${c1}---: - :-----------${c2}sMMMMNMNMP${c1}. ---: - :-----------${c2}:MMMdP${c1}------- ---\\ -,------------${c2}:MMMd${c1}-------- ---: -:------------${c2}:MMMd${c1}------- .---: -:---- ${c2}oNMMMMMMMMMNho${c1} .----: -:-- .${c2}+shhhMMMmhhy++${c1} .------/ -:- -------${c2}:MMMd${c1}--------------: -:- --------${c2}/MMMd${c1}-------------; -:- ------${c2}/hMMMy${c1}------------: -:--${c2} :dMNdhhdNMMNo${c1}------------; -:---${c2}:sdNMMMMNds:${c1}------------: -:------${c2}:://:${c1}-------------:: -:---------------------:// diff --git a/ascii/distro/freebsd b/ascii/distro/freebsd deleted file mode 100644 index 6ef67782..00000000 --- a/ascii/distro/freebsd +++ /dev/null @@ -1,15 +0,0 @@ - ${c2}``` ${c1}` - ${c2}` `.....---...${c1}....--.``` -/ - ${c2}+o .--` ${c1}/y:` +. - ${c2} yo`:. ${c1}:o `+- - ${c2}y/ ${c1}-/` -o/ - ${c2}.- ${c1}::/sy+:. - ${c2}/ ${c1}`-- / - ${c2}`: ${c1}:` - ${c2}`: ${c1}:` - ${c2}/ ${c1}/ - ${c2}.- ${c1}-. - ${c2}-- ${c1}-. - ${c2}`:` ${c1}`:` - .-- `--. - .---.....----. diff --git a/ascii/distro/freebsd_small b/ascii/distro/freebsd_small deleted file mode 100644 index 943c147e..00000000 --- a/ascii/distro/freebsd_small +++ /dev/null @@ -1,7 +0,0 @@ -${c1} /\\ _____ /\\ - \\_) (_/ - / \ -| | -| | - \ / - --_____-- diff --git a/ascii/distro/frugalware b/ascii/distro/frugalware deleted file mode 100644 index b11961ba..00000000 --- a/ascii/distro/frugalware +++ /dev/null @@ -1,23 +0,0 @@ -${c1} `++/::-.` - /o+++++++++/::-.` - `o+++++++++++++++o++/::-.` - /+++++++++++++++++++++++oo++/:-.`` - .o+ooooooooooooooooooosssssssso++oo++/:-` - ++osoooooooooooosssssssssssssyyo+++++++o: - -o+ssoooooooooooosssssssssssssyyo+++++++s` - o++ssoooooo++++++++++++++sssyyyyo++++++o: - :o++ssoooooo${c2}/-------------${c1}+syyyyyo+++++oo - `o+++ssoooooo${c2}/-----${c1}+++++ooosyyyyyyo++++os: - /o+++ssoooooo${c2}/-----${c1}ooooooosyyyyyyyo+oooss - .o++++ssooooos${c2}/------------${c1}syyyyyyhsosssy- - ++++++ssooooss${c2}/-----${c1}+++++ooyyhhhhhdssssso - -s+++++syssssss${c2}/-----${c1}yyhhhhhhhhhhhddssssy. - sooooooyhyyyyyh${c2}/-----${c1}hhhhhhhhhhhddddyssy+ - :yooooooyhyyyhhhyyyyyyhhhhhhhhhhdddddyssy` - yoooooooyhyyhhhhhhhhhhhhhhhhhhhddddddysy/ --ysooooooydhhhhhhhhhhhddddddddddddddddssy - .-:/+osssyyyysyyyyyyyyyyyyyyyyyyyyyyssy: - ``.-/+oosysssssssssssssssssssssss - ``.:/+osyysssssssssssssh. - `-:/+osyyssssyo - .-:+++` diff --git a/ascii/distro/funtoo b/ascii/distro/funtoo deleted file mode 100644 index 13079091..00000000 --- a/ascii/distro/funtoo +++ /dev/null @@ -1,11 +0,0 @@ -${c2} _______ ____ - /MMMMMMM/ /MMMM| _____ _____ - __/M${c1}.MMM.${c2}M/_____________|M${c1}.M${c2}MM|/MMMMM\/MMMMM\\ -|MMMM${c1}MM'${c2}MMMMMMMMMMMMMMMMMMM${c1}MM${c2}MMMM${c1}.MMMM..MMMM.${c2}MM\\ -|MM${c1}MMMMMMM${c2}/m${c1}MMMMMMMMMMMMMMMMMMMMMM${c2}MMMM${c1}MM${c2}MMMM${c1}MM${c2}MM| -|MMMM${c1}MM${c2}MMM${c1}MM${c2}MM${c1}MM${c2}MM${c1}MM${c2}MMMMM${c1}\MMM${c2}MMM${c1}MM${c2}MMMM${c1}MM${c2}MMMM${c1}MM${c2}MM| - |MM${c1}MM${c2}MMM${c1}MM${c2}MM${c1}MM${c2}MM${c1}MM${c2}MM${c1}MM${c2}MM${c1}MMM${c2}MMMM${c1}'MMMM''MMMM'${c2}MM/ - |MM${c1}MM${c2}MMM${c1}MM${c2}MM${c1}MM${c2}MM${c1}MM${c2}MM${c1}MM${c2}MM${c1}MMM${c2}MMM\MMMMM/\MMMMM/ - |MM${c1}MM${c2}MMM${c1}MM${c2}MMMMMM${c1}MM${c2}MM${c1}MM${c2}MM${c1}MMMMM'${c2}M| - |MM${c1}MM${c2}MMM${c1}MMMMMMMMMMMMMMMMM MM'${c2}M/ - |MMMMMMMMMMMMMMMMMMMMMMMMMMMM/ diff --git a/ascii/distro/galliumos b/ascii/distro/galliumos deleted file mode 100644 index ae9681d5..00000000 --- a/ascii/distro/galliumos +++ /dev/null @@ -1,19 +0,0 @@ -${c1}sooooooooooooooooooooooooooooooooooooo+: -yyooooooooooooooooooooooooooooooooo+/::: -yyysoooooooooooooooooooooooooooo+/:::::: -yyyyyoooooooooooooooooooooooo+/::::::::: -yyyyyysoooooooooooooooooo++/:::::::::::: -yyyyyyysoooooooooooooo++/::::::::::::::: -yyyyyyyyysoooooo${c2}sydddys${c1}+/::::::::::::::: -yyyyyyyyyysooo${c2}smMMMMMMMNd${c1}+:::::::::::::: -yyyyyyyyyyyyo${c2}sMMMMMMMMMMMN${c1}/::::::::::::: -yyyyyyyyyyyyy${c2}dMMMMMMMMMMMM${c1}o//::::::::::: -yyyyyyyyyyyyy${c2}hMMMMMMMMMMMm${c1}--//:::::::::: -yyyyyyyyyyyyyy${c2}hmMMMMMMMNy${c1}:..-://:::::::: -yyyyyyyyyyyyyyy${c2}yyhhyys+:${c1}......://::::::: -yyyyyyyyyyyyyyys+:--...........-///::::: -yyyyyyyyyyyys+:--................://:::: -yyyyyyyyyo+:-.....................-//::: -yyyyyyo+:-..........................://: -yyyo+:-..............................-// -o/:-...................................: diff --git a/ascii/distro/gem b/ascii/distro/gem deleted file mode 100644 index 49c8849d..00000000 --- a/ascii/distro/gem +++ /dev/null @@ -1,15 +0,0 @@ -${c1} ## - ## ######### - #### ## - #### #### ## -#### #### ## ## - #### #### ## ## - #### #### ## ## ## - #### ###### - ###### ## ## #### - #### ################ - #### ## #### - ## #### ###### - ## ## #### #### - ## ## ## ## ## #### - #### ## ## ## diff --git a/ascii/distro/gentoo b/ascii/distro/gentoo deleted file mode 100644 index 3bec6daa..00000000 --- a/ascii/distro/gentoo +++ /dev/null @@ -1,18 +0,0 @@ -${c1} -/oyddmdhs+:. - -o${c2}dNMMMMMMMMNNmhy+${c1}-` - -y${c2}NMMMMMMMMMMMNNNmmdhy${c1}+- - `o${c2}mMMMMMMMMMMMMNmdmmmmddhhy${c1}/` - om${c2}MMMMMMMMMMMN${c1}hhyyyo${c2}hmdddhhhd${c1}o` -.y${c2}dMMMMMMMMMMd${c1}hs++so/s${c2}mdddhhhhdm${c1}+` - oy${c2}hdmNMMMMMMMN${c1}dyooy${c2}dmddddhhhhyhN${c1}d. - :o${c2}yhhdNNMMMMMMMNNNmmdddhhhhhyym${c1}Mh - .:${c2}+sydNMMMMMNNNmmmdddhhhhhhmM${c1}my - /m${c2}MMMMMMNNNmmmdddhhhhhmMNh${c1}s: - `o${c2}NMMMMMMMNNNmmmddddhhdmMNhs${c1}+` - `s${c2}NMMMMMMMMNNNmmmdddddmNMmhs${c1}/. - /N${c2}MMMMMMMMNNNNmmmdddmNMNdso${c1}:` -+M${c2}MMMMMMNNNNNmmmmdmNMNdso${c1}/- -yM${c2}MNNNNNNNmmmmmNNMmhs+/${c1}-` -/h${c2}MMNNNNNNNNMNdhs++/${c1}-` -`/${c2}ohdmmddhys+++/:${c1}.` - `-//////:--. diff --git a/ascii/distro/gentoo_small b/ascii/distro/gentoo_small deleted file mode 100644 index a1e7a0ba..00000000 --- a/ascii/distro/gentoo_small +++ /dev/null @@ -1,7 +0,0 @@ -${c1} _-----_ -( \\ -\ 0 \\ -${c2} \ ) - / _/ -( _- -\____- diff --git a/ascii/distro/gnewsense b/ascii/distro/gnewsense deleted file mode 100644 index b98b859b..00000000 --- a/ascii/distro/gnewsense +++ /dev/null @@ -1,12 +0,0 @@ -${c1} ..,,,,.. - .oocchhhhhhhhhhccoo. - .ochhlllllllc hhhhhh ollllllhhco. - ochlllllllllll hhhllllllhhh lllllllllllhco - .cllllllllllllll hlllllo +hllh llllllllllllllc. -ollllllllllhco'' hlllllo +hllh ``ochllllllllllo -hllllllllc' hllllllllllllh `cllllllllh -ollllllh +llllllllllll+ hllllllo - `cllllh. ohllllllho .hllllc' - ochllc. ++++ .cllhco - `+occooo+. .+ooocco+' - `+oo++++ ++++oo+' diff --git a/ascii/distro/gnu b/ascii/distro/gnu deleted file mode 100644 index e4b4c017..00000000 --- a/ascii/distro/gnu +++ /dev/null @@ -1,18 +0,0 @@ -${c1} _-`````-, ,- '- . - .' .- - | | - -. `. - /.' / `. \ -:/ : _... ..._ `` : -:: : /._ .`:'_.._\. || : -:: `._ ./ ,` : \ . _.'' . -`:. / | -. \-. \\_ / - \:._ _/ .' .@) \@) ` `\ ,.' - _/,--' .- .\,-.`--`. - ,'/'' (( \ ` ) - /'/' \ `-' ( - '/'' `._,-----' - ''/' .,---' - ''/' ;: - ''/'' ''/ - ''/''/'' - '/'/' - `; diff --git a/ascii/distro/gobolinux b/ascii/distro/gobolinux deleted file mode 100644 index 443cfbca..00000000 --- a/ascii/distro/gobolinux +++ /dev/null @@ -1,6 +0,0 @@ -${c1}_____ _ -/ ____| | | -| | __ ___ | |__ ___ -| | |_ |/ _ \| '_ \ / _ \ -| |__| | (_) | |_) | (_) | - \_____|\___/|_.__/ \___/ diff --git a/ascii/distro/grombyang b/ascii/distro/grombyang deleted file mode 100644 index 6dfbea9b..00000000 --- a/ascii/distro/grombyang +++ /dev/null @@ -1,18 +0,0 @@ -${c1} eeeeeeeeeeee - eeeeeeeeeeeeeeeee - eeeeeeeeeeeeeeeeeeeeeee - eeeee ${c2}.o+ ${c1}eeee - eeee ${c2}`ooo/ ${c1}eeee - eeee ${c2}`+oooo: ${c1}eeee -eee ${c2}`+oooooo: ${c1}eee -eee ${c2}-+oooooo+: ${c1}eee -ee ${c2}`/:oooooooo+: ${c1}ee -ee ${c2}`/+ +++ +: ${c1}ee -ee ${c2}+o+\ ${c1}ee -eee ${c2}+o+\ ${c1}eee -eee ${c2}// \\ooo/ \\\ ${c1}eee - eee ${c2}//++++oooo++++\\\ ${c1}eee - eeee ${c2}::::++oooo+::::: ${c1}eeee - eeeee ${c3}Grombyang OS ${c1} eeee - eeeeeeeeeeeeeeeeeeeeeee - eeeeeeeeeeeeeeeee diff --git a/ascii/distro/guixsd b/ascii/distro/guixsd deleted file mode 100644 index 6d6345ec..00000000 --- a/ascii/distro/guixsd +++ /dev/null @@ -1,10 +0,0 @@ -${c1} .. `. - `--..```..` `..```..--` - .-:///-:::. `-:::///:-. - ````.:::` `:::.```` - -//:` -::- - ://: -::- - `///- .:::` - -+++-:::. - :+/:::- - `-....` diff --git a/ascii/distro/haiku b/ascii/distro/haiku deleted file mode 100644 index 56a7feb4..00000000 --- a/ascii/distro/haiku +++ /dev/null @@ -1,17 +0,0 @@ -${c2} :dc' - 'l:;'${c1},${c2}'ck. .;dc:. - co ${c1}..${c2}k. .;; ':o. - co ${c1}..${c2}k. ol ${c1}.${c2}0. - co ${c1}..${c2}k. oc ${c1}..${c2}0. - co ${c1}..${c2}k. oc ${c1}..${c2}0. -.Ol,. co ${c1}...''${c2}Oc;kkodxOdddOoc,. - ';lxxlxOdxkxk0kd${c1}oooll${c2}dl${c1}ccc:${c2}clxd; - ..${c1}oOolllllccccccc:::::${c2}od; - cx:ooc${c1}:::::::;${c2}cooolcX. - cd${c1}.${c2}''cloxdoollc' ${c1}...${c2}0. - cd${c1}......${c2}k;${c1}.${c2}xl${c1}.... .${c2}0. - .::c${c1};..${c2}cx;${c1}.${c2}xo${c1}..... .${c2}0. - '::c'${c1}...${c2}do${c1}..... .${c2}K, - cd,.${c1}....:${c2}O,${c1} - ':clod:'${c1} - ${c1} diff --git a/ascii/distro/hyperbola b/ascii/distro/hyperbola deleted file mode 100644 index 5e013359..00000000 --- a/ascii/distro/hyperbola +++ /dev/null @@ -1,16 +0,0 @@ -${c1} WW - KX W - WO0W NX0O - NOO0NW WNXK0OOKW - W0OOOOOOOOOOOOKN - N0OOOOOOO0KXW - WNXXXNW - NXK00000KN - WNK0OOOOOOOOOO0W - NK0OOOOOOOOOOOOOO0W - X0OOOOOOO00KK00OOOOOK - X0OOOO0KNWW WX0OO0W - X0OO0XNW KOOW - N00KNW KOW - NKXN W0W -WW W diff --git a/ascii/distro/irix b/ascii/distro/irix deleted file mode 100644 index 57ce2121..00000000 --- a/ascii/distro/irix +++ /dev/null @@ -1,19 +0,0 @@ -${c1} ./ohmNd/ +dNmho/- - `:+ydNMMMMMMMM.-MMMMMMMMMdyo:. - `hMMMMMMNhs/sMMM-:MMM+/shNMMMMMMh` - -NMMMMMmo-` /MMM-/MMM- `-omMMMMMN. - `.`-+hNMMMMMNhyMMM-/MMMshmMMMMMmy+...` -+mMNds:-:sdNMMMMMMMyyMMMMMMMNdo:.:sdMMm+ -dMMMMMMmy+.-/ymNMMMMMMMMNmy/-.+hmMMMMMMd -oMMMMmMMMMNds:.+MMMmmMMN/.-odNMMMMmMMMM+ -.MMMM-/ymMMMMMmNMMy..hMMNmMMMMMmy/-MMMM. - hMMM/ `/dMMMMMMMN////NMMMMMMMd/. /MMMh - /MMMdhmMMMmyyMMMMMMMMMMMMhymMMMmhdMMM: - `mMMMMNho//sdMMMMM//NMMMMms//ohNMMMMd - `/so/:+ymMMMNMMMM` mMMMMMMMmh+::+o/` - `yNMMNho-yMMMM` NMMMm.+hNMMNh` - -MMMMd: oMMMM. NMMMh :hMMMM- - -yNMMMmooMMMM- NMMMyomMMMNy- - .omMMMMMMMM-`NMMMMMMMmo. - `:hMMMMMM. NMMMMMh/` - .odNm+ /dNms. diff --git a/ascii/distro/kali b/ascii/distro/kali deleted file mode 100644 index d1e01da6..00000000 --- a/ascii/distro/kali +++ /dev/null @@ -1,21 +0,0 @@ -${c1}.............. - ..,;:ccc,. - ......''';lxO. -.....''''..........,:ld; - .';;;:::;,,.x, - ..'''. 0Xxoc:,. ... - .... ,ONkc;,;cokOdc',. - . OMo ':${c2}dd${c1}o. - dMc :OO; - 0M. .:o. - ;Wd - ;XO, - ,d0Odlc;,.. - ..',;:cdOOd::,. - .:d;.':;. - 'd, .' - ;l .. - .o - c - .' - . diff --git a/ascii/distro/kaos b/ascii/distro/kaos deleted file mode 100644 index 830835e4..00000000 --- a/ascii/distro/kaos +++ /dev/null @@ -1,16 +0,0 @@ -${c1} .. - ..... ..OSSAAAAAAA.. - .KKKKSS. .SSAAAAAAAAAAA. -.KKKKKSO. .SAAAAAAAAAA... -KKKKKKS. .OAAAAAAAA. -KKKKKKS. .OAAAAAA. -KKKKKKS. .SSAA.. -.KKKKKS..OAAAAAAAAAAAA........ - DKKKKO.=AA=========A===AASSSO.. - AKKKS.==========AASSSSAAAAAASS. - .=KKO..========ASS.....SSSSASSSS. - .KK. .ASS..O.. =SSSSAOSS: - .OK. .ASSSSSSSO...=A.SSA. - .K ..SSSASSSS.. ..SSA. - .SSS.AAKAKSSKA. - .SSS....S.. diff --git a/ascii/distro/kde b/ascii/distro/kde deleted file mode 100644 index 16809700..00000000 --- a/ascii/distro/kde +++ /dev/null @@ -1,19 +0,0 @@ -${c1} `..---+/---..` - `---.`` `` `.---.` - .--.` `` `-:-. - `:/: `.----//----.` :/- - .:. `---` `--.` .:` - .:` `--` .:- `:. - `/ `:. `.-::-.` -:` `/` - /. /. `:++++++++:` .: .: -`/ .: `+++++++++++/ /` `+` -/+` -- .++++++++++++` :. .+: -`/ .: `+++++++++++/ /` `+` - /` /. `:++++++++:` .: .: - ./ `:. `.:::-.` -:` `/` - .:` `--` .:- `:. - .:. `---` `--.` .:` - `:/: `.----//----.` :/- - .-:.` `` `-:-. - `---.`` `` `.---.` - `..---+/---..` diff --git a/ascii/distro/kogaion b/ascii/distro/kogaion deleted file mode 100644 index 47ed962e..00000000 --- a/ascii/distro/kogaion +++ /dev/null @@ -1,20 +0,0 @@ -${c1} ;; ,; - ;;; ,;; - ,;;;; ;;;; - ,;;;;;;;; ;;;; - ;;;;;;;;;;; ;;;;; - ,;;;;;;;;;;;; ';;;;;, - ;;;;;;;;;;;;;;, ';;;;;;; - ;;;;;;;;;;;;;;;;;, ';;;;; -; ';;;;;;;;;;;;;;;;;;, ;;; -;;;, ';;;;;;;;;;;;;;;;;;;,;; -;;;;;, ';;;;;;;;;;;;;;;;;;, -;;;;;;;;, ';;;;;;;;;;;;;;;;, -;;;;;;;;;;;;, ';;;;;;;;;;;;;; -';;;;;;;;;;;;; ';;;;;;;;;;;;; - ';;;;;;;;;;;;;, ';;;;;;;;;;; - ';;;;;;;;;;;;; ;;;;;;;;;; - ';;;;;;;;;;;; ;;;;;;;; - ';;;;;;;; ;;;;;; - ';;;;; ;;;; - ';;; ;; diff --git a/ascii/distro/korora b/ascii/distro/korora deleted file mode 100644 index 709289af..00000000 --- a/ascii/distro/korora +++ /dev/null @@ -1,16 +0,0 @@ -${c2} ____________ - _add55555555554${c1}: - _w?'${c1}``````````'${c2})k${c1}: - _Z'${c1}`${c2} ]k${c1}: - m(${c1}`${c2} )k${c1}: - _.ss${c1}`${c2}m[${c1}`${c2}, ]e${c1}: - .uY"^`${c1}`${c2}Xc${c1}`${c2}?Ss. d(${c1}` - jF'${c1}`${c2} `@. ${c1}`${c2}Sc .jr${c1}` - jr${c1}`${c2} `?n_ ${c1}`${c2}$; _a2"${c1}` -.m${c1}:${c2} `~M${c1}`${c2}1k${c1}`${c2}5?!`${c1}` -:#${c1}:${c2} ${c1}`${c2})e${c1}``` -:m${c1}:${c2} ,#'${c1}` -:#${c1}:${c2} .s2'${c1}` -:m,________.aa7^${c1}` -:#baaaaaaas!J'${c1}` - ``````````` diff --git a/ascii/distro/kslinux b/ascii/distro/kslinux deleted file mode 100644 index 53385bd8..00000000 --- a/ascii/distro/kslinux +++ /dev/null @@ -1,11 +0,0 @@ -${c1} K K U U RRRR ooo - K K U U R R o o - KKK U U RRRR o o - K K U U R R o o - K K UUU R R ooo - -${c2} SSS AAA W W AAA - S A A W W A A - SSS AAAAA W W W AAAAA - S A A WW WW A A - SSS A A W W A A diff --git a/ascii/distro/kubuntu b/ascii/distro/kubuntu deleted file mode 100644 index 6302ff0f..00000000 --- a/ascii/distro/kubuntu +++ /dev/null @@ -1,20 +0,0 @@ -${c1} `.:/ossyyyysso/:. - .:oyyyyyyyyyyyyyyyyyyo:` - -oyyyyyyyo${c2}dMMy${c1}yyyyyyysyyyyo- - -syyyyyyyyyy${c2}dMMy${c1}oyyyy${c2}dmMMy${c1}yyyys- - oyyys${c2}dMy${c1}syyyy${c2}dMMMMMMMMMMMMMy${c1}yyyyyyo - `oyyyy${c2}dMMMMy${c1}syysoooooo${c2}dMMMMy${c1}yyyyyyyyo` - oyyyyyy${c2}dMMMMy${c1}yyyyyyyyyyys${c2}dMMy${c1}sssssyyyo --yyyyyyyy${c2}dMy${c1}syyyyyyyyyyyyyys${c2}dMMMMMy${c1}syyy- -oyyyysoo${c2}dMy${c1}yyyyyyyyyyyyyyyyyy${c2}dMMMMy${c1}syyyo -yyys${c2}dMMMMMy${c1}yyyyyyyyyyyyyyyyyysosyyyyyyyy -yyys${c2}dMMMMMy${c1}yyyyyyyyyyyyyyyyyyyyyyyyyyyyy -oyyyyysos${c2}dy${c1}yyyyyyyyyyyyyyyyyy${c2}dMMMMy${c1}syyyo --yyyyyyyy${c2}dMy${c1}syyyyyyyyyyyyyys${c2}dMMMMMy${c1}syyy- - oyyyyyy${c2}dMMMy${c1}syyyyyyyyyyys${c2}dMMy${c1}oyyyoyyyo - `oyyyy${c2}dMMMy${c1}syyyoooooo${c2}dMMMMy${c1}oyyyyyyyyo - oyyysyyoyyyys${c2}dMMMMMMMMMMMy${c1}yyyyyyyo - -syyyyyyyyy${c2}dMMMy${c1}syyy${c2}dMMMy${c1}syyyys- - -oyyyyyyy${c2}dMMy${c1}yyyyyysosyyyyo- - ./oyyyyyyyyyyyyyyyyyyo/. - `.:/oosyyyysso/:.` diff --git a/ascii/distro/lede b/ascii/distro/lede deleted file mode 100644 index b1af9495..00000000 --- a/ascii/distro/lede +++ /dev/null @@ -1,9 +0,0 @@ - ${c1} _________ - / /\ - / LE / \ - / DE / \ - /________/ LE \ - \ \ DE / - \ LE \ / - \ DE \ / - \________\/ diff --git a/ascii/distro/linux b/ascii/distro/linux deleted file mode 100644 index f31dd29f..00000000 --- a/ascii/distro/linux +++ /dev/null @@ -1,12 +0,0 @@ -${c2} ##### -${c2} ####### -${c2} ##${c1}O${c2}#${c1}O${c2}## -${c2} #${c3}#####${c2}# -${c2} ##${c1}##${c3}###${c1}##${c2}## -${c2} #${c1}##########${c2}## -${c2} #${c1}############${c2}## -${c2} #${c1}############${c2}### -${c3} ##${c2}#${c1}###########${c2}##${c3}# -${c3}######${c2}#${c1}#######${c2}#${c3}###### -${c3}#######${c2}#${c1}#####${c2}#${c3}####### -${c3} #####${c2}#######${c3}##### diff --git a/ascii/distro/lmde b/ascii/distro/lmde deleted file mode 100644 index 5161881e..00000000 --- a/ascii/distro/lmde +++ /dev/null @@ -1,17 +0,0 @@ - ${c2}`.-::---.. -${c1} .:++++ooooosssoo:. - .+o++::. `.:oos+. -${c1} :oo:.` -+oo${c2}: -${c1} ${c2}`${c1}+o/` .${c2}::::::${c1}-. .++-${c2}` -${c1}${c2}`${c1}/s/ .yyyyyyyyyyo: +o-${c2}` -${c1}${c2}`${c1}so .ss ohyo` :s-${c2}: -${c1}${c2}`${c1}s/ .ss h m myy/ /s`${c2}` -${c1}`s: `oo s m Myy+-o:` -`oo :+sdoohyoydyso/. - :o. .:////////++: -${c1} `/++ ${c2}-:::::- -${c1} ${c2}`${c1}++- -${c1} ${c2}`${c1}/+- -${c1} ${c2}.${c1}+/. -${c1} ${c2}.${c1}:+-. - `--.`` diff --git a/ascii/distro/lubuntu b/ascii/distro/lubuntu deleted file mode 100644 index 9731cb3e..00000000 --- a/ascii/distro/lubuntu +++ /dev/null @@ -1,20 +0,0 @@ -${c1} `-/+oyyhhhhyyo+/-` - ./shhhhhhhhhhhhhhhhhhs/. - `:shhhhhhhhhhhhhhhhhhhhhhhhs:` - :yhhhhhhhhhhhhhhhs++yhhhhhhhhhy: - `ohhhhhhhhhhhhhs+:. .yhhhhhhhhhhhho` - `shhhhhhhhhhy+:` /yhhhhhhhhhhhhhs` - shhhhhhhhy+. .ohhhhhhhhhhhhhs -:hhhhhhy/. /hhhhhhhhhhhhh: -shhhy/. :hhhhhhhhhhhhs -hy+. ` `+yhs/` +hhhhhhhhhhhh --.:/oshy- ` :yhhhhhy/ shhhhhhhhhhh -shhhhhy-`/s. .shhhhhhhhho` .hhhhhhhhhhs -:hhhho`:ys` /yhhhhhhhhhhhs` +hhhhhhhhh: - shh/.sh+ `ohhhhhhhhhhhhhhs` .hhhhhhhhs - `o-+hh: :yhhhhhhhhhhhhhhhho ohhhhhhs` - +hy-`ohhhhhhhhhhhhhhhhhhh+ -hhhhho` - :.-yhhhhhhhhhhhhhhhhhhhhh: yhhy: - :shhhhhhhhhhhhhhhhhhhhhy`+s:` - .+shhhhhhhhhhhhhhhhhhs:` - `-/+oyyhhhhyys+/-` diff --git a/ascii/distro/lunar b/ascii/distro/lunar deleted file mode 100644 index 26bd295c..00000000 --- a/ascii/distro/lunar +++ /dev/null @@ -1,13 +0,0 @@ -${c1}`-. `-. - -ohys/-` `:+shy/` - -omNNdyo/` :+shmNNy/` - ${c3} - - /mMmo - hMMMN` - .NMMs - ${c1} -:+oooo+//: ${c3}/MN${c1}. -///oooo+/-` - /:.` ${c3}/${c1} `.:/` -${c3} __ - | | _ _ ___ ___ ___ - | |__| | | | .'| _| - |_____|___|_|_|__,|_| diff --git a/ascii/distro/mac b/ascii/distro/mac deleted file mode 100644 index 3ca5ea31..00000000 --- a/ascii/distro/mac +++ /dev/null @@ -1,18 +0,0 @@ -${c1} 'c. - ,xNMM. - .OMMMMo - OMMM0, - .;loddo:' loolloddol;. - cKMMMMMMMMMMNWMMMMMMMMMM0: -${c2} .KMMMMMMMMMMMMMMMMMMMMMMMWd. - XMMMMMMMMMMMMMMMMMMMMMMMX. -${c3};MMMMMMMMMMMMMMMMMMMMMMMM: -:MMMMMMMMMMMMMMMMMMMMMMMM: -${c4}.MMMMMMMMMMMMMMMMMMMMMMMMX. - kMMMMMMMMMMMMMMMMMMMMMMMMWd. - ${c5}.XMMMMMMMMMMMMMMMMMMMMMMMMMMk - .XMMMMMMMMMMMMMMMMMMMMMMMMK. - ${c6}kMMMMMMMMMMMMMMMMMMMMMMd - ;KMMMMMMMWXXWMMMMMMMk. - .cooc,. .,coo:. - diff --git a/ascii/distro/mac_small b/ascii/distro/mac_small deleted file mode 100644 index 24852ff1..00000000 --- a/ascii/distro/mac_small +++ /dev/null @@ -1,8 +0,0 @@ -${c1} .:' - _ :'_ -${c2} .'`_`-'_``. -:________.-' -${c3}:_______: -:_______: -${c4} :_______`-; -${c5} `._.-._.' diff --git a/ascii/distro/mageia b/ascii/distro/mageia deleted file mode 100644 index af01caba..00000000 --- a/ascii/distro/mageia +++ /dev/null @@ -1,19 +0,0 @@ -${c1} .°°. - °° .°°. - .°°°. °° - . . - °°° .°°°. - .°°°. '___' -${c2} .${c1}'___' ${c2} . - :dkxc;'. ..,cxkd; - .dkk. kkkkkkkkkk .kkd. -.dkk. ';cloolc;. .kkd -ckk. .kk; -xO: cOd -xO: lOd -lOO. .OO: -.k00. .00x - .k00; ;00O. - .lO0Kc;,,,,,,;c0KOc. - ;d00KKKKKK00d; - .,KKKK,. diff --git a/ascii/distro/magpieos b/ascii/distro/magpieos deleted file mode 100644 index 6859d96b..00000000 --- a/ascii/distro/magpieos +++ /dev/null @@ -1,20 +0,0 @@ -${c1} ;00000 :000Ol - .x00kk00: O0kk00k; - l00: :00. o0k :O0k. - .k0k. x${c2}d$dddd${c1}k' .d00; - k0k. ${c2}.dddddl ${c1}o00, - o00. ${c2}':cc:. ${c1}d0O -.00l ,00. -l00. d0x -k0O .:k0o -O0k ;dO0000d. -k0O .O0O${c2}xxxxk${c1}00: -o00. k0O${c2}dddddd${c1}occ -'00l x0O${c2}dddddo${c3};..${c1} - x00. .x00${c2}kxxd${c3}:..${c1} - .O0x .:oxxx${c4}Okl.${c1} - .x0d ${c4},xx,${c1} - .:o. ${c4}.xd ckd${c1} - .. ${c4}dxl .xx; - :xxolldxd' - ;oxdl. diff --git a/ascii/distro/manjaro b/ascii/distro/manjaro deleted file mode 100644 index 89fa7a2f..00000000 --- a/ascii/distro/manjaro +++ /dev/null @@ -1,14 +0,0 @@ -${c1}██████████████████ ████████ -██████████████████ ████████ -██████████████████ ████████ -██████████████████ ████████ -████████ ████████ -████████ ████████ ████████ -████████ ████████ ████████ -████████ ████████ ████████ -████████ ████████ ████████ -████████ ████████ ████████ -████████ ████████ ████████ -████████ ████████ ████████ -████████ ████████ ████████ -████████ ████████ ████████ diff --git a/ascii/distro/maui b/ascii/distro/maui deleted file mode 100644 index 1ab9c07d..00000000 --- a/ascii/distro/maui +++ /dev/null @@ -1,20 +0,0 @@ -${c1} `.-://////:--` - .:/oooooooooooooooo+:. - `:+ooooooooooooooooooooooo:` - `:oooooooooooooooooooooooooooo/` - ..```-oooooo/-`` `:oooooo+:.` `-- - :. +oo+-` /ooo/` -/ - -o. `o+- +o/` -o: -`oo` ::` :o/ `+. .+o` /oo. -/o+ . -+oo- ` /oo/ `ooo/ -+o- /ooo+` .+ooo. :ooo+ -++ .+oooo: -oooo+ `oooo+ -:. .oooooo` :ooooo- :oooo: -` .oooooo: :ooooo+ `ooo+-` - .+oooooo` -oooooo: `o/- - +oooooo: .ooooooo. - /ooooooo` /ooooooo/ .. - `:oooooooo/:::/ooooooooo+:--:/:` - `:+oooooooooooooooooooooo+:` - .:+oooooooooooooooo+:. - `.-://////:-.` diff --git a/ascii/distro/mer b/ascii/distro/mer deleted file mode 100644 index a98f3eb1..00000000 --- a/ascii/distro/mer +++ /dev/null @@ -1,27 +0,0 @@ -${c1} dMs - .-` - `y`-o+` - ``NMMy - .--`:++. - .hNNNNs - /MMMMMN - `ommmd/ +/ - ```` +/ - `:+sssso/-` - .-::. `-::-` `smNMNmdmNMNd/ .://-` -.ymNMNNdmNMMNm+` -dMMh:.....+dMMs `sNNMMNo -dMN+::NMMy::hMM+ mMMo `ohhy/ `dMM+ yMMy::- -MMm yMM- :MMs NMN` `:::::--sMMh dMM` -MMm yMM- -MMs mMM+ `ymmdsymMMMs dMM` -NNd sNN- -NNs -mMNs-.--..:dMMh` dNN ---- .--` `--. .smMMmdddmMNdo` .-- - ./ohddds+:` - +h- `.:-. - ./`.dMMMN+ - +MMMMMd - `+dmmy- - ``` .+` - .dMNo-y. - `hmm/ - .:` - dMs diff --git a/ascii/distro/minix b/ascii/distro/minix deleted file mode 100644 index a0ff143c..00000000 --- a/ascii/distro/minix +++ /dev/null @@ -1,17 +0,0 @@ -${c2} -sdhyo+:-` -/syymm: - sdyooymmNNy. `` .smNmmdysNd - odyoso+syNNmysoyhhdhsoomNmm+/osdm/ - :hhy+-/syNNmddhddddddmNMNo:sdNd: - `smNNdNmmNmddddddddddmmmmmmmy` - `ohhhhdddddmmNNdmddNmNNmdddddmdh- - odNNNmdyo/:/-/hNddNy-`..-+ydNNNmd: - `+mNho:` smmd/ sNNh :dmms` -+ymmo. --od/ -m${c1}mm${c2}mo -NN+ +m${c1}mm${c2}m- yms: -+sms -.` :so: .NN+ :os/ .-`mNh: -.-hyh+:////- -sNNd:` .--://ohNs- - `:hNNNNNNNMMd/sNMmhsdMMh/ymmNNNmmNNy/ - -+sNNNNMMNNNsmNMo: :NNmymNNNNMMMms: - //oydNMMMMydMMNysNMMmsMMMMMNyo/` - ../-yNMMy--/::/-.sMMmos+.` - -+oyhNsooo+omy/``` - `::ohdmds-` diff --git a/ascii/distro/mint b/ascii/distro/mint deleted file mode 100644 index c7e59d99..00000000 --- a/ascii/distro/mint +++ /dev/null @@ -1,16 +0,0 @@ -${c1}MMMMMMMMMMMMMMMMMMMMMMMMMmds+. -MMm----::-://////////////oymNMd+` -MMd ${c2}/++ ${c1}-sNMd: -MMNso/` ${c2}dMM `.::-. .-::.` ${c1}.hMN: -ddddMMh ${c2}dMM :hNMNMNhNMNMNh: ${c1}`NMm - NMm ${c2}dMM .NMN/-+MMM+-/NMN` ${c1}dMM - NMm ${c2}dMM -MMm `MMM dMM. ${c1}dMM - NMm ${c2}dMM -MMm `MMM dMM. ${c1}dMM - NMm ${c2}dMM .mmd `mmm yMM. ${c1}dMM - NMm ${c2}dMM` ..` ... ydm. ${c1}dMM - hMM- ${c2}+MMd/-------...-:sdds ${c1}dMM - -NMm- ${c2}:hNMNNNmdddddddddy/` ${c1}dMM - -dMNs-${c2}``-::::-------.`` ${c1}dMM - `/dMNmy+/:-------------:/yMMM - ./ydNMMMMMMMMMMMMMMMMMMMMM - .MMMMMMMMMMMMMMMMMMM diff --git a/ascii/distro/mx b/ascii/distro/mx deleted file mode 100644 index 9fc44075..00000000 --- a/ascii/distro/mx +++ /dev/null @@ -1,17 +0,0 @@ -${c3}MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMNMMMMMMMMM -MMMMMMMMMMNs..yMMMMMMMMMMMMMm: +NMMMMMMM -MMMMMMMMMN+ :mMMMMMMMMMNo` -dMMMMMMMM -MMMMMMMMMMMs. `oNMMMMMMh- `sNMMMMMMMMM -MMMMMMMMMMMMN/ -hMMMN+ :dMMMMMMMMMMM -MMMMMMMMMMMMMMh- +ms. .sMMMMMMMMMMMMM -MMMMMMMMMMMMMMMN+` ` +NMMMMMMMMMMMMMM -MMMMMMMMMMMMMMNMMd: .dMMMMMMMMMMMMMMM -MMMMMMMMMMMMm/-hMd- `sNMMMMMMMMMMMMM -MMMMMMMMMMNo` -` :h/ -dMMMMMMMMMMMM -MMMMMMMMMd: /NMMh- `+NMMMMMMMMMM -MMMMMMMNo` :mMMN+` `-hMMMMMMMM -MMMMMMh. `oNMMd: `/mMMMMMM -MMMMm/ -hMd- `sNMMMM -MMNs` - :dMMM -Mm: `oMM -MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM diff --git a/ascii/distro/netbsd b/ascii/distro/netbsd deleted file mode 100644 index 6048ee3a..00000000 --- a/ascii/distro/netbsd +++ /dev/null @@ -1,17 +0,0 @@ -${c1} `-/oshdmNMNdhyo+:-` -${c2}y${c1}/s+:-`` `.-:+oydNMMMMNhs/-`` -${c2}-m+${c1}NMMMMMMMMMMMMMMMMMMMNdhmNMMMmdhs+/-` - ${c2}-m+${c1}NMMMMMMMMMMMMMMMMMMMMmy+:` - ${c2}-N/${c1}dMMMMMMMMMMMMMMMds:` - ${c2}-N/${c1}hMMMMMMMMMmho:` - ${c2}-N/${c1}-:/++/:.` -${c2} :M+ - :Mo - :Ms - :Ms - :Ms - :Ms - :Ms - :Ms - :Ms - :Ms diff --git a/ascii/distro/netrunner b/ascii/distro/netrunner deleted file mode 100644 index 4230bc09..00000000 --- a/ascii/distro/netrunner +++ /dev/null @@ -1,20 +0,0 @@ -${c1} .:oydmMMMMMMmdyo:` - -smMMMMMMMMMMMMMMMMMMds- - +mMMMMMMMMMMMMMMMMMMMMMMMMd+ - /mMMMMMMMMMMMMMMMMMMMMMMMMMMMMm/ - `hMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMy` - .mMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMd` - dMMMMMMMMMMMMMMMMMMMMMMNdhmMMMMMMMMMMh -+MMMMMMMMMMMMMNmhyo+/-. -MMMMMMMMMMMM/ -mMMMMMMMMd+:.` `mMMMMMMMMMMMMd -MMMMMMMMMMMdy/. yMMMMMMMMMMMMMM -MMMMMMMMMMMMMMMNh+` +MMMMMMMMMMMMMMM -mMMMMMMMMMMMMMMMMMs -NMMMMMMMMMMMMMMd -+MMMMMMMMMMMMMMMMMN. `mMMMMMMMMMMMMMMM/ - dMMMMMMMMMMMMMMMMMy hMMMMMMMMMMMMMMMh - `dMMMMMMMMMMMMMMMMM-+MMMMMMMMMMMMMMMd` - `hMMMMMMMMMMMMMMMMmMMMMMMMMMMMMMMMy - /mMMMMMMMMMMMMMMMMMMMMMMMMMMMMm: - +dMMMMMMMMMMMMMMMMMMMMMMMMd/ - -odMMMMMMMMMMMMMMMMMMdo- - `:+ydmNMMMMNmhy+-` diff --git a/ascii/distro/nitrux b/ascii/distro/nitrux deleted file mode 100644 index 2f49d638..00000000 --- a/ascii/distro/nitrux +++ /dev/null @@ -1,18 +0,0 @@ -${c1}`:/. -`/yo -`/yo -`/yo .+:. -`/yo .sys+:.` -`/yo `-/sys+:.` -`/yo ./sss+:.` -`/yo .:oss+:-` -`/yo ./o///:-` -`/yo `.-:///////:` -`/yo `.://///++//-`` -`/yo `.-:////++++/-` -`/yo `-://///++o+/-` -`/yo `-/+o+++ooo+/-` -`/s+:+oooossso/.` -`//+sssssso:. -`+syyyy+:` -:+s+- diff --git a/ascii/distro/nixos b/ascii/distro/nixos deleted file mode 100644 index d1a35bd2..00000000 --- a/ascii/distro/nixos +++ /dev/null @@ -1,19 +0,0 @@ -${c1} ::::. ${c2}'::::: ::::' -${c1} '::::: ${c2}':::::. ::::' -${c1} ::::: ${c2}'::::.::::: -${c1} .......:::::..... ${c2}:::::::: -${c1} ::::::::::::::::::. ${c2}:::::: ${c1}::::. - ::::::::::::::::::::: ${c2}:::::. ${c1}.::::' -${c2} ..... ::::' ${c1}:::::' -${c2} ::::: '::' ${c1}:::::' -${c2} ........::::: ' ${c1}:::::::::::. -${c2}::::::::::::: ${c1}::::::::::::: -${c2} ::::::::::: ${c1}.. ${c1}::::: -${c2} .::::: ${c1}.::: ${c1}::::: -${c2} .::::: ${c1}::::: ${c1}''''' ${c2}..... - ::::: ${c1}':::::. ${c2}......:::::::::::::' - ::: ${c1}::::::. ${c2}':::::::::::::::::' -${c1} .:::::::: ${c2}':::::::::: -${c1} .::::''::::. ${c2}'::::. -${c1} .::::' ::::. ${c2}'::::. -${c1} .:::: :::: ${c2}'::::. diff --git a/ascii/distro/nixos_small b/ascii/distro/nixos_small deleted file mode 100644 index 0917ff8e..00000000 --- a/ascii/distro/nixos_small +++ /dev/null @@ -1,7 +0,0 @@ - ${c1}\\\\ \\\\ // - ==\\\\__\\\\/ // - // \\\\// -==// //== - //\\\\___// -// /\\\\ \\\\== - // \\\\ \\\\ diff --git a/ascii/distro/nurunner b/ascii/distro/nurunner deleted file mode 100644 index e5529673..00000000 --- a/ascii/distro/nurunner +++ /dev/null @@ -1,19 +0,0 @@ -${c1} ,xc - ;00cxXl - ;K0, .xNo. - :KO' .lXx. - cXk. ;xl cXk. - cXk. ;k:.,xo. cXk. - .lXx. :x::0MNl,dd. :KO, - .xNx. cx;:KMMMMMNo'dx. ;KK; - .dNl. cd,cXMMMMMMMMMWd,ox' 'OK: -;WK. 'K,.KMMMMMMMMMMMMMWc.Kx lMO - 'OK: 'dl'xWMMMMMMMMMM0::x: 'OK: - .kNo .xo'xWMMMMMM0;:O: ;KK; - .dXd. .do,oNMMO;ck: ;00, - oNd. .dx,;'cO; ;K0, - oNx. okk; ;K0, - lXx. :KO' - cKk' cXk. - ;00:lXx. - ,kd. diff --git a/ascii/distro/nutyx b/ascii/distro/nutyx deleted file mode 100644 index 84a6cc5a..00000000 --- a/ascii/distro/nutyx +++ /dev/null @@ -1,23 +0,0 @@ -${c1} . - . - ... - ... - .... .........--. - ..-++-----....--++++++---. - .-++++++-. .-++++++++++++-----.. - .--... .++..-+++--.....-++++++++++--.. - . .-+-. .**- .... ..-+----.. - .+++. .*+. + -++-----. - .+++++- ++. .*+. .....-+++-----. - -+++-++. .+. .-+***++***++--++++. . - -+-. -- -. -*- ...... ..--. -.-. .+- . -+. -. .+- +. - -- -- - -+----. .- - -++-.+. . - .++. -- - +. ----. - . .+. .. - - . - . \ No newline at end of file diff --git a/ascii/distro/obrevenge b/ascii/distro/obrevenge deleted file mode 100644 index 87b50f40..00000000 --- a/ascii/distro/obrevenge +++ /dev/null @@ -1,18 +0,0 @@ -${c1} __ __ - _@@@@ @@@g_ - _@@@@@@ @@@@@@ - _@@@@@@M W@@@@@@_ - j@@@@P ^W@@@@ - @@@@L____ _____Q@@@@ -Q@@@@@@@@@@j@@@@@@@@@@ -@@@@@ T@j@ T@@@@@ -@@@@@ ___Q@J@ _@@@@@ -@@@@@fMMM@@j@jggg@@@@@@ -@@@@@ j@j@^MW@P @@@@ -Q@@@@@ggg@@f@ @@@@@@L -^@@@@WWMMP ^ Q@@@@ - @@@@@_ _@@@@l - W@@@@@g_____g@@@@@P - @@@@@@@@@@@@@@@@l - ^W@@@@@@@@@@@P - ^TMMMMTll diff --git a/ascii/distro/openbsd b/ascii/distro/openbsd deleted file mode 100644 index d3812019..00000000 --- a/ascii/distro/openbsd +++ /dev/null @@ -1,23 +0,0 @@ - ${c3} _ - (_) -${c1} | . -${c1} . |L /| . ${c3} _ -${c1} _ . |\ _| \--+._/| . ${c3}(_) -${c1} / ||\| Y J ) / |/| ./ - J |)'( | ` F`.'/ ${c3} _ -${c1} -<| F __ .-< ${c3}(_) -${c1} | / .-'${c3}. ${c1}`. /${c3}-. ${c1}L___ - J \\ < ${c3}\ ${c1} | | ${c5}O${c3}\\${c1}|.-' ${c3} _ -${c1} _J \\ .- \\${c3}/ ${c5}O ${c3}| ${c1}| \\ |${c1}F ${c3}(_) -${c1} '-F -<_. \\ .-' `-' L__ -__J _ _. >-' ${c1})${c4}._. ${c1}|-' -${c1} `-|.' /_. ${c4}\_| ${c1} F - /.- . _.< - /' /.' .' `\\ - /L /' |/ _.-'-\\ - /'J ___.---'\| - |\ .--' V | `. ` - |/`. `-. `._) - / .-.\\ - \\ ( `\\ - `.\ diff --git a/ascii/distro/openbsd_small b/ascii/distro/openbsd_small deleted file mode 100644 index bb6e646a..00000000 --- a/ascii/distro/openbsd_small +++ /dev/null @@ -1,7 +0,0 @@ -${c1} _____ - \\- -/ - \\_/ \\ - | ${c2}O O${c1} | - |_ < ) 3 ) - / \\ / - /-_____-\\ diff --git a/ascii/distro/openindiana b/ascii/distro/openindiana deleted file mode 100644 index c76d8f7b..00000000 --- a/ascii/distro/openindiana +++ /dev/null @@ -1,16 +0,0 @@ -${c2} .sy/ - .yh+ - - ${c1}-+syyyo+- ${c2} /+. - ${c1}+ddo/---/sdh/ ${c2} ym- - ${c1}`hm+ `sms${c2} ym-```````.-. - ${c1}sm+ sm/ ${c2} ym- +s - ${c1}hm. /mo ${c2} ym- /h - ${c1}omo ym: ${c2} ym- `os` - ${c1}smo` .ym+ ${c2} ym- .os- - `` ${c1}:ymy+///oyms- ${c2} ym- .+s+. - ..` ${c1}`:+oo+/-` ${c2} -//oyo- - -:` .:oys/. -+- `./oyys/. -h+` `.-:+oyyyo/-` -`/ossssysso+/-.` diff --git a/ascii/distro/openmandriva b/ascii/distro/openmandriva deleted file mode 100644 index ef3e8439..00000000 --- a/ascii/distro/openmandriva +++ /dev/null @@ -1,15 +0,0 @@ -${c2} `` - `-. -${c1} ` ${c2}.--- -${c1} -/ ${c2}-::--` -${c1} `++ ${c2}`----...```-:::::. -${c1} `os. ${c2}.::::::::::::::-``` ` ` -${c1} +s+ ${c2}.::::::::::::::::---...--` -${c1}-ss: ${c2}`-::::::::::::::::-.``.`` -${c1}/ss- ${c2}.::::::::::::-.`` ` -${c1}+ss: ${c2}.::::::::::::- -${c1}/sso ${c2}.::::::-::::::- -${c1}.sss/ ${c2}-:::-.` .::::: -${c1} /sss+. ${c2}..`${c1} `--` ${c2}.::: -${c1} -ossso+/:://+/-` ${c2}.:` -${c1} -/+ooo+/-. ${c2}` diff --git a/ascii/distro/openwrt b/ascii/distro/openwrt deleted file mode 100644 index 903068b0..00000000 --- a/ascii/distro/openwrt +++ /dev/null @@ -1,9 +0,0 @@ -${c1} _______ -| |.-----.-----.-----. -| - || _ | -__| | -|_______|| __|_____|__|__| - |__| - ________ __ -| | | |.----.| |_ -| | | || _|| _| -|________||__| |____| diff --git a/ascii/distro/oracle b/ascii/distro/oracle deleted file mode 100644 index cdd61c55..00000000 --- a/ascii/distro/oracle +++ /dev/null @@ -1,12 +0,0 @@ -${c1} - `-/+++++++++++++++++/-.` - `/syyyyyyyyyyyyyyyyyyyyyyys/. - :yyyyo/-...............-/oyyyy/ - /yyys- .oyyy+ -.yyyy` `syyy- -:yyyo /yyy/ -.yyyy` `syyy- - /yyys. .oyyyo - /yyyyo:-...............-:oyyyy/` - `/syyyyyyyyyyyyyyyyyyyyyyys+. - `.:/+ooooooooooooooo+/:.` diff --git a/ascii/distro/osmc b/ascii/distro/osmc deleted file mode 100644 index f18c2e99..00000000 --- a/ascii/distro/osmc +++ /dev/null @@ -1,20 +0,0 @@ -${c1} -+shdmNNNNmdhs+- - .+hMNho/:..``..:/ohNMh+. - :hMdo. .odMh: - -dMy- -yMd- - sMd- -dMs - hMy +. .+ yMh - yMy dMs. .sMd yMy -:Mm dMNMs` `sMNMd `mM: -yM+ dM//mNs``sNm//Md +My -mM- dM: +NNNN+ :Md -Mm -mM- dM: `oNN+ :Md -Mm -yM+ dM/+NNo` :Md +My -:Mm` dMMNs` :Md `mM: - yMy dMs` -ms yMy - hMy +. yMh - sMd- -dMs - -dMy- -yMd- - :hMdo. .odMh: - .+hMNho/:..``..:/ohNMh+. - -+shdmNNNNmdhs+- diff --git a/ascii/distro/pacbsd b/ascii/distro/pacbsd deleted file mode 100644 index 000e93a0..00000000 --- a/ascii/distro/pacbsd +++ /dev/null @@ -1,24 +0,0 @@ -${c1} :+sMs. - `:ddNMd- -o--` - -sMMMMh: `+N+`` - yMMMMMs` .....-/-... `mNh/ - yMMMMMmh+-`:sdmmmmmmMmmmmddy+-``./ddNMMm - yNMMNMMMMNdyyNNMMMMMMMMMMMMMMMhyshNmMMMm - :yMMMMMMMMMNdooNMMMMMMMMMMMMMMMMNmy:mMMd - +MMMMMMMMMmy:sNMMMMMMMMMMMMMMMMMMMmshs- - :hNMMMMMMN+-+MMMMMMMMMMMMMMMMMMMMMMMs. - .omysmNNhy/+yNMMMMMMMMMMNMMMMMMMMMNdNNy- - /hMM:::::/hNMMMMMMMMMMMm/-yNMMMMMMN.mMNh` -.hMMMMdhdMMMMMMMMMMMMMMmo `sMMMMMMN mMMm- -:dMMMMMMMMMMMMMMMMMMMMMdo+ oMMMMMMN`smMNo` -/dMMMMMMMMMMMMMMMMMMMMMNd/` :yMMMMMN:-hMMM. -:dMMMMMMMMMMMMMMMMMMMMMNh` oMMMMMMNo/dMNN` -:hMMMMMMMMMMMMMMMMMMMMMMNs--sMMMMMMMNNmy++` - sNMMMMMMMMMMMMMMMMMMMMMMMmmNMMMMMMNho::o. - :yMMMMMMMMMMMMMNho+sydNNNNNNNmysso/` -// - /dMMMMMMMMMMMMMs- ````````..`` - .oMMMMMMMMMMMMNs` ./y:` - +dNMMNMMMMMMMmy` ``./ys. - `/hMMMMMMMMMMMNo-`` `.+yy+-` - `-/hmNMNMMMMMMmmddddhhy/-` - `-+oooyMMMdsoo+/:. diff --git a/ascii/distro/parabola b/ascii/distro/parabola deleted file mode 100644 index 33c38bd5..00000000 --- a/ascii/distro/parabola +++ /dev/null @@ -1,16 +0,0 @@ -${c1} `.-. `. - `.` `:++. `-+o+. - `` `:+/. `:+/. `-+oooo+ - ``-::-.:+/. `:+/. `-+oooooo+ - `.-:///- ..` .-. `-+oooooooo- - `..-..` `+ooooooooo: -`` :oooooooo/ - `ooooooo: - `oooooo: - -oooo+. - +ooo/` - -ooo- - `+o/. - /+- - //` - -. diff --git a/ascii/distro/pardus b/ascii/distro/pardus deleted file mode 100644 index ae817579..00000000 --- a/ascii/distro/pardus +++ /dev/null @@ -1,18 +0,0 @@ -${c1} .smNdy+- `.:/osyyso+:.` -+ydmNs. -/Md- -/ymMdmNNdhso/::/oshdNNmdMmy/. :dM/ -mN. oMdyy- -y `-dMo .Nm -.mN+` sMy hN+ -: yMs `+Nm. - `yMMddMs.dy `+` sMddMMy` - +MMMo .` . oMMM+ - `NM/ `````.` `.````` +MN` - yM+ `.-:yhomy ymohy:-.` +My - yM: yo oy :My - +Ms .N` `N. +h sM+ - `MN - -::::::- : :o:+`NM` - yM/ sh -dMMMMd- ho +y+My - .dNhsohMh-//: /mm/ ://-yMyoshNd` - `-ommNMm+:/. oo ./:+mMNmmo:` - `/o+.-somNh- :yy: -hNmos-.+o/` - ./` .s/`s+sMdd+``+ddMs+s`/s. `/. - : -y. -hNmddmNy. .y- : - -+ `..` +- diff --git a/ascii/distro/parrot b/ascii/distro/parrot deleted file mode 100644 index af98994d..00000000 --- a/ascii/distro/parrot +++ /dev/null @@ -1,24 +0,0 @@ -${c1} `:oho/-` -`mMMMMMMMMMMMNmmdhy- - dMMMMMMMMMMMMMMMMMMs` - +MMsohNMMMMMMMMMMMMMm/ - .My .+dMMMMMMMMMMMMMh. - + :NMMMMMMMMMMMMNo - `yMMMMMMMMMMMMMm: - /NMMMMMMMMMMMMMy` - .hMMMMMMMMMMMMMN+ - ``-NMMMMMMMMMd- - /MMMMMMMMMMMs` - mMMMMMMMsyNMN/ - +MMMMMMMo :sNh. - `NMMMMMMm -o/ - oMMMMMMM. - `NMMMMMM+ - +MMd/NMh - mMm -mN` - /MM `h: - dM` . - :M- - d: - -+ - - diff --git a/ascii/distro/parsix b/ascii/distro/parsix deleted file mode 100644 index 2753a461..00000000 --- a/ascii/distro/parsix +++ /dev/null @@ -1,21 +0,0 @@ - ${c2}-/+/:. - ${c2}.syssssys. - ${c1}.--. ${c2}ssssssssso${c1} ..--. - :++++++: ${c2}+ssssssss+${c1} ./++/+++: - /+++++++++.${c2}.yssooooy`${c1}-+///////o- - /++++++++++.${c2}+soooos:${c1}:+////////+- - :+++++////o-${c2}oooooo-${c1}+/////////- - `-/++//++-${c4}.-----.-${c1}:+/////:- - ${c3}-://::--${c1}-:/:${c4}.--.````.--.${c1}:::-${c3}--::::::. -${c3}-/:::::::://:${c4}.:-` `-:${c3}`:/:::::::--/- -${c3}/::::::::::/-${c4}--. .-.${c3}-/://///::::/ -${c3}-/:::::::::/:${c4}`:-. .-:${c3}`:///////////- - `${c3}-::::--${c1}.-://.${c4}---....---${c1}`:+/:-${c3}--::::-` - ${c1}-/+///+o/-${c4}.----.${c1}.:oo+++o+. - ${c1}-+/////+++o:${c2}syyyyy.${c1}o+++++++++: - ${c1}.+////+++++-${c2}+sssssy+${c1}.++++++++++\ - ${c1}.+:/++++++.${c2}.yssssssy-${c1}`+++++++++: - ${c1}:/+++++- ${c2}+sssssssss ${c1}-++++++- - ${c1}`--` ${c2}+sssssssso ${c1}`--` - ${c2}+sssssy+` - ${c2}`.::-` diff --git a/ascii/distro/pclinuxos b/ascii/distro/pclinuxos deleted file mode 100644 index 963d3929..00000000 --- a/ascii/distro/pclinuxos +++ /dev/null @@ -1,19 +0,0 @@ - ${c1}mhhhyyyyhhhdN - dyssyhhhhhhhhhhhssyhN - Nysyhhyo/:-.....-/oyhhhssd - Nsshhy+. `/shhysm - dohhy/ -shhsy - dohhs` /hhys -N+hho ${c2}+ssssss+- .+syhys+ ${c1}/hhsy -ohhh` ${c2}ymmo++hmm+`smmy/::+y` ${c1}shh+ -+hho ${c2}ymm- /mmy+mms ${c1}:hhod -/hh+ ${c2}ymmhhdmmh.smm/ ${c1}.hhsh -+hhs ${c2}ymm+::-` /mmy` ` ${c1}/hh+m -yyhh- ${c2}ymm- /dmdyosyd` ${c1}`yhh+ - ohhy` ${c2}://` -/+++/- ${c1}ohhom - N+hhy- `shhoh - sshho. `+hhyom - dsyhhs/. `:ohhhoy - dysyhhhso///://+syhhhssh - dhyssyhhhhhhyssyyhN - mddhdhdmN diff --git a/ascii/distro/peppermint b/ascii/distro/peppermint deleted file mode 100644 index be0a953b..00000000 --- a/ascii/distro/peppermint +++ /dev/null @@ -1,19 +0,0 @@ -${c1} 8ZZZZZZ${c2}MMMMM -${c1} .ZZZZZZZZZ${c2}MMMMMMM. -${c2} MM${c1}ZZZZZZZZZ${c2}MMMMMMM${c1}ZZZZ -${c2} MMMMM${c1}ZZZZZZZZ${c2}MMMMM${c1}ZZZZZZZM -${c2} MMMMMMM${c1}ZZZZZZZ${c2}MMMM${c1}ZZZZZZZZZ. -${c2} MMMMMMMMM${c1}ZZZZZZ${c2}MMM${c1}ZZZZZZZZZZZI -${c2}MMMMMMMMMMM${c1}ZZZZZZ${c2}MM${c1}ZZZZZZZZZZ${c2}MMM -${c1}.ZZZ${c2}MMMMMMMMMM${c1}IZZ${c2}MM${c1}ZZZZZ${c2}MMMMMMMMM -${c1}ZZZZZZZ${c2}MMMMMMMM${c1}ZZ${c2}M${c1}ZZZZ${c2}MMMMMMMMMMM -${c1}ZZZZZZZZZZZZZZZZ${c2}M${c1}Z${c2}MMMMMMMMMMMMMMM -${c1}.ZZZZZZZZZZZZZ${c2}MMM${c1}Z${c2}M${c1}ZZZZZZZZZZ${c2}MMMM -${c1}.ZZZZZZZZZZZ${c2}MMM${c1}7ZZ${c2}MM${c1}ZZZZZZZZZZ7${c2}M -${c1} ZZZZZZZZZ${c2}MMMM${c1}ZZZZ${c2}MMMM${c1}ZZZZZZZ77 -${c2} MMMMMMMMMMMM${c1}ZZZZZ${c2}MMMM${c1}ZZZZZ77 -${c2} MMMMMMMMMM${c1}7ZZZZZZ${c2}MMMMM${c1}ZZ77 -${c2} .MMMMMMM${c1}ZZZZZZZZ${c2}MMMMM${c1}Z7Z -${c2} MMMMM${c1}ZZZZZZZZZ${c2}MMMMMMM -${c1} NZZZZZZZZZZZ${c2}MMMMM -${c1} ZZZZZZZZZ${c2}MM) diff --git a/ascii/distro/pop_os b/ascii/distro/pop_os deleted file mode 100644 index a399f18f..00000000 --- a/ascii/distro/pop_os +++ /dev/null @@ -1,21 +0,0 @@ -${c1} ///////////// - ///////////////////// - ///////${c2}*767${c1}//////////////// - //////${c2}7676767676*${c1}////////////// - /////${c2}76767${c1}//${c2}7676767${c1}////////////// - /////${c2}767676${c1}///${c2}*76767${c1}/////////////// - ///////${c2}767676${c1}///${c2}76767${c1}.///${c2}7676*${c1}/////// -/////////${c2}767676${c1}//${c2}76767${c1}///${c2}767676${c1}//////// -//////////${c2}76767676767${c1}////${c2}76767${c1}///////// -///////////${c2}76767676${c1}//////${c2}7676${c1}////////// -////////////,${c2}7676${c1},///////${c2}767${c1}/////////// -/////////////*${c2}7676${c1}///////${c2}76${c1}//////////// -///////////////${c2}7676${c1}//////////////////// - ///////////////${c2}7676${c1}///${c2}767${c1}//////////// - //////////////////////${c2}'${c1}//////////// - //////${c2}.7676767676767676767,${c1}////// - /////${c2}767676767676767676767${c1}///// - /////////////////////////// - ///////////////////// - ///////////// - diff --git a/ascii/distro/porteus b/ascii/distro/porteus deleted file mode 100644 index 82cc7aa9..00000000 --- a/ascii/distro/porteus +++ /dev/null @@ -1,23 +0,0 @@ -${c1} `.-:::-.` - -+ydmNNNNNNNmdy+- - .+dNmdhs+//////+shdmdo. - .smmy+-` ./sdy: - `omdo. `.-/+osssso+/-` `+dy. - `yms. `:shmNmdhsoo++osyyo-``oh. - hm/ .odNmds/.` ``.....:::-+s -/m: `+dNmy:` `./oyhhhhyyooo++so -ys `yNmy- .+hmmho:-.` ``` -s: yNm+` .smNd+. -`` /Nm: +dNd+` - yN+ `smNy. - dm oNNy` - hy -mNm. - +y oNNo - `y` sNN: - `: +NN: - ` .mNo - /mm` - /my` - .sy` - .+: - ` diff --git a/ascii/distro/postmarketos b/ascii/distro/postmarketos deleted file mode 100644 index a2ebc838..00000000 --- a/ascii/distro/postmarketos +++ /dev/null @@ -1,17 +0,0 @@ -${c1} ss - `hMMh` - .dMMMMd. - -NMMMMMMN- - /MMMMMMMMMN/ - hMMMMMMMMMMMo - y+`mMMmdNMMMMMMy - `dMM-.-:- .mMMMMMMh` - .mMMMMMMd` `dMMMMMMm. - :NMMMMMMy yMMMMMMN: - /MMMMMMMo oMMMmdmN/ - oMMMMMMM/ /MN.-/:-. - `yMMMMMMN- -:.NMMMMy` - `dMMMMMMM- -/////////////dMMMMMMd` - -mMMMMMMMMN+`sMMMMMMMMMMMMMMMMMMMMm- - :NMMMMMMMMMMM/ yMMMMMMMMMMMMMMMMMMMMN: -+MMMMMMMMMMMh.:mMMMMMMMMMMMMMMMMMMMMMMM+ diff --git a/ascii/distro/puppy b/ascii/distro/puppy deleted file mode 100644 index 7cdc1c2d..00000000 --- a/ascii/distro/puppy +++ /dev/null @@ -1,18 +0,0 @@ -${c1} `-/osyyyysosyhhhhhyys+- - -ohmNNmh+/hMMMMMMMMNNNNd+dMMMMNM+ - yMMMMNNmmddo/NMMMNNNNNNNNNo+NNNNNy -.NNNNNNmmmddds:MMNNNNNNNNNNNh:mNNN/ --NNNdyyyhdmmmd`dNNNNNmmmmNNmdd/os/ -.Nm+shddyooo+/smNNNNmmmmNh. :mmd. - NNNNy:` ./hmmmmmmmNNNN: hNMh - NMN- -++- +NNNNNNNNNNm+..-sMMMM- -.MMo oNNNNo hNNNNNNNNmhdNNNMMMMM+ -.MMs /NNNN/ dNmhs+:-` yMMMMMMMM+ - mMM+ .. `sNN+. hMMMMhhMMM- - +MMMmo:...:sNMMMMMms:` hMMMMm.hMMy - yMMMMMMMMMMMNdMMMMMM::/+o+//dMMd` - sMMMMMMMMMMN+:oyyo:sMMMNNMMMNy` - :mMMMMMMMMMMMmddNMMMMMMMMmh/ - /dMMMMMMMMMMMMMMMMMMNdy/` - .+hNMMMMMMMMMNmdhs/. - .:/+ooo+/:-. diff --git a/ascii/distro/qubes b/ascii/distro/qubes deleted file mode 100644 index 3867fa6f..00000000 --- a/ascii/distro/qubes +++ /dev/null @@ -1,21 +0,0 @@ -${c1} `..--..` - `.----------.` - `..----------------..` - `.------------------------.`` - `..-------------....-------------..` -.::----------..`` ``..----------:+: -:////:----..` `..---:/ossso -:///////:` `/osssssso -:///////: /ssssssso -:///////: /ssssssso -:///////: /ssssssso -:///////: /ssssssso -:///////: /ssssssso -:////////-` .:sssssssso -:///////////-.` `-/osssssssssso -`//////////////:-```.:+ssssssssssssso- - .-://////////////sssssssssssssso/-` - `.:///////////sssssssssssssso:. - .-:///////ssssssssssssssssss/` - `.:////ssss+/+ssssssssssss. - `--//- `-/osssso/. diff --git a/ascii/distro/raspbian b/ascii/distro/raspbian deleted file mode 100644 index 472b74eb..00000000 --- a/ascii/distro/raspbian +++ /dev/null @@ -1,23 +0,0 @@ -${c1} `.::///+:/-. --///+//-:`` - `+oooooooooooo: `+oooooooooooo: - /oooo++//ooooo: ooooo+//+ooooo. - `+ooooooo:-:oo- +o+::/ooooooo: - `:oooooooo+`` `.oooooooo+- - `:++ooo/. :+ooo+/.` - ${c2}...` `.----.` ``.. - .::::-``:::::::::.`-:::-` - -:::-` .:::::::-` `-:::- - `::. `.--.` `` `.---.``.::` - .::::::::` -::::::::` ` - .::` .:::::::::- `::::::::::``::. --:::` ::::::::::. ::::::::::.`:::- -:::: -::::::::. `-:::::::: :::: --::- .-:::-.``....``.-::-. -::- - .. `` .::::::::. `..`.. - -:::-` -::::::::::` .:::::` - :::::::` -::::::::::` :::::::. - .::::::: -::::::::. :::::::: - `-:::::` ..--.` ::::::. - `...` `...--..` `...` - .:::::::::: - `.-::::-` diff --git a/ascii/distro/redhat b/ascii/distro/redhat deleted file mode 100644 index 868521f4..00000000 --- a/ascii/distro/redhat +++ /dev/null @@ -1,16 +0,0 @@ -${c1} `.-..........` - `////////::.`-/. - -: ....-////////. - //:-::///////////` - `--::: `-://////////////: - //////- ``.-:///////// .` - `://////:-.` :///////::///:` - .-/////////:---/////////////: - .-://////////////////////. -${c2} yMN+`.-${c1}::///////////////-` -${c2} .-`:NMMNMs` `..-------..` - MN+/mMMMMMhoooyysshsss -MMM MMMMMMMMMMMMMMyyddMMM+ - MMMM MMMMMMMMMMMMMNdyNMMh` hyhMMM - MMMMMMMMMMMMMMMMyoNNNMMM+. MMMMMMMM - MMNMMMNNMMMMMNM+ mhsMNyyyyMNMMMMsMM diff --git a/ascii/distro/redstar b/ascii/distro/redstar deleted file mode 100644 index 6c15233f..00000000 --- a/ascii/distro/redstar +++ /dev/null @@ -1,18 +0,0 @@ -${c1} .. - .oK0l - :0KKKKd. - .xKO0KKKKd - ,Od' .d0000l - .c;. .'''... ..'. -.,:cloddxxxkkkkOOOOkkkkkkkkxxxxxxxxxkkkx: -;kOOOOOOOkxOkc'...',;;;;,,,'',;;:cllc:,. - .okkkkd,.lko .......',;:cllc:;,,'''''. - .cdo. :xd' cd:. ..';'',,,'',,;;;,'. - . .ddl.;doooc'..;oc;'..';::;,'. - coo;.oooolllllllcccc:'. . - .ool''lllllccccccc:::::;. - ;lll. .':cccc:::::::;;;;' - :lcc:'',..';::::;;;;;;;,,. - :cccc::::;...';;;;;,,,,,,. - ,::::::;;;,'. ..',,,,'''. - ........ ...... diff --git a/ascii/distro/refracta b/ascii/distro/refracta deleted file mode 100644 index 396474b5..00000000 --- a/ascii/distro/refracta +++ /dev/null @@ -1,19 +0,0 @@ -${c2} A - VW - VVW\\ - .yWWW\\ - ,;,,u,;yy;;v;uyyyyyyy ,WWWWW^ - *WWWWWWWWWWWWWWWW/ $VWWWWw , - ^*%WWWWWWVWWX $WWWW** ,yy - , "**WWW/' **' ,yy/WWW*` - &WWWWwy `*` <,ywWW%VWWW* - yWWWWWWWWWW* ., "**WW%W - ,&WWWWWM*"` ,y/ &WWWww ^* - XWWX*^ ,yWWWW09 .WWWWWWWWwy, - *` &WWWWWM WWWWWWWWWWWWWww, - (WWWWW` /#####WWW*********** - ^WWWW - VWW - Wh. - V/ - diff --git a/ascii/distro/rosa b/ascii/distro/rosa deleted file mode 100644 index fcbad876..00000000 --- a/ascii/distro/rosa +++ /dev/null @@ -1,20 +0,0 @@ -${c1} ROSAROSAROSAROSAR - ROSA AROS - ROS SAROSAROSAROSAR AROS - RO ROSAROSAROSAROSAROSAR RO - ARO AROSAROSAROSARO AROS ROS - ARO ROSAROS OSAR ROSA ROS - RO AROSA ROSAROSAROSA ROSAR RO -RO ROSAR ROSAROSAROSAR R ROSARO RO -RO ROSA AROSAROSAROSA AR ROSARO AR -RO AROS ROSAROSAROSA ROS AROSARO AR -RO AROS ROSAROSARO ROSARO ROSARO AR -RO ROS AROSAROS ROSAROSA AROSAR AR -RO ROSA ROS ROSAROSAR ROSARO RO - RO ROS AROSAROSAROSA ROSARO AR - ARO ROSA ROSAROSAROS AROSAR ARO - ARO OROSA R ROSAROS ROS - RO AROSAROS AROSAROSAR RO - AROS AROSAROSAROSARO AROS - ROSA SARO - ROSAROSAROSAROSAR diff --git a/ascii/distro/sabayon b/ascii/distro/sabayon deleted file mode 100644 index bfd51eed..00000000 --- a/ascii/distro/sabayon +++ /dev/null @@ -1,18 +0,0 @@ -${c1} ........... - .. .. - .. .. - .. ${c2}o ${c1}.. - .. ${c2}:W' ${c1}.. - .. ${c2}.d. ${c1}.. -:. ${c2}.KNO ${c1}.: -:. ${c2}cNNN. ${c1}.: -: ${c2}dXXX, ${c1}: -: ${c2}. dXXX, .cd, ${c1}: -: ${c2}'kc .. dKKK. ,ll;:' ${c1}: -: ${c2}.xkkxc;..dkkkc',cxkkl ${c1}: -:. ${c2}.,cdddddddddddddo:. ${c1}.: - .. ${c2}:lllllll: ${c1}.. - .. ${c2}',,,,, ${c1}.. - .. .. - .. .. - ............... diff --git a/ascii/distro/sabotage b/ascii/distro/sabotage deleted file mode 100644 index d4490fc8..00000000 --- a/ascii/distro/sabotage +++ /dev/null @@ -1,12 +0,0 @@ - -${c2} .|'''.| | '||''|. ..|''|| - ||.. ' ||| || || .|' || - ''|||. | || ||'''|. || || -. '|| .''''|. || || '|. || -|'....|' .|. .||. .||...|' ''|...|' - -|''||''| | ..|'''.| '||''''| - || ||| .|' ' || . - || | || || .... ||''| - || .''''|. '|. || || - .||. .|. .||. ''|...'| .||.....| diff --git a/ascii/distro/sailfishos b/ascii/distro/sailfishos deleted file mode 100644 index a7dd91b4..00000000 --- a/ascii/distro/sailfishos +++ /dev/null @@ -1,18 +0,0 @@ -${c1} .+eWWW - .+ee+++eee e. - .ee++eeeeeeee +e. - .e++ee++eeeeeee+eee+e+ - ee.e+.ee+eee++eeeeee+ - W.+e.e+.e++ee+eee - W.+e.W.ee.W++ee' - +e.W W.e+.W.W+ - W.e.+e.W W W. - e e e +e.W.W - .W W W. - W.+e.W. - W++e.ee+. - ++ +ee++eeeee++. - ' '+++e 'ee. - ee - ee - e diff --git a/ascii/distro/salentos b/ascii/distro/salentos deleted file mode 100644 index f41ee747..00000000 --- a/ascii/distro/salentos +++ /dev/null @@ -1,20 +0,0 @@ -${c1} ``..`` - .-:+oshdNMMMMMMNdhyo+:-.` - -oydmMMMMMMMMMMMMMMMMMMMMMMMMMMNdhs/ -${c4} +hdddm${c1}NMMMMMMMMMMMMMMMMMMMMMMMMN${c4}mdddh+` -${c2}`MMMMMN${c4}mdddddm${c1}MMMMMMMMMMMM${c4}mdddddm${c3}NMMMMM- -${c2} mMMMMMMMMMMMN${c4}ddddhyyhhddd${c3}NMMMMMMMMMMMM` -${c2} dMMMMMMMMMMMMMMMMM${c4}oo${c3}MMMMMMMMMMMMMMMMMN` -${c2} yMMMMMMMMMMMMMMMMM${c4}hh${c3}MMMMMMMMMMMMMMMMMd -${c2} +MMMMMMMMMMMMMMMMM${c4}hh${c3}MMMMMMMMMMMMMMMMMy -${c2} :MMMMMMMMMMMMMMMMM${c4}hh${c3}MMMMMMMMMMMMMMMMMo -${c2} .MMMMMMMMMMMMMMMMM${c4}hh${c3}MMMMMMMMMMMMMMMMM/ -${c2} `NMMMMMMMMMMMMMMMM${c4}hh${c3}MMMMMMMMMMMMMMMMM- -${c2} mMMMMMMMMMMMMMMMM${c4}hh${c3}MMMMMMMMMMMMMMMMN` -${c2} hMMMMMMMMMMMMMMMM${c4}hh${c3}MMMMMMMMMMMMMMMMm -${c2} /MMMMMMMMMMMMMMMM${c4}hh${c3}MMMMMMMMMMMMMMMMy -${c2} .+hMMMMMMMMMMMMM${c4}hh${c3}MMMMMMMMMMMMMms: -${c2} `:smMMMMMMMMM${c4}hh${c3}MMMMMMMMMNh+. -${c2} .+hMMMMMM${c4}hh${c3}MMMMMMdo: -${c2} `:smMM${c4}yy${c3}MMNy/` - ${c2}.- ${c4}`${c3}:. diff --git a/ascii/distro/scientific b/ascii/distro/scientific deleted file mode 100644 index 82e9553f..00000000 --- a/ascii/distro/scientific +++ /dev/null @@ -1,20 +0,0 @@ -${c1} =/;;/- - +: // - /; /; - -X H. -.//;;;:;;-, X= :+ .-;:=;:;#;. -M- ,=;;;#:, ,:#;;:=, ,@ -:# :#.=/++++/=.$= #= - ,#; #/:+/;,,/++:+/ ;+. - ,+/. ,;@+, ,#H;, ,/+, - ;+;;/= @. ${c3}.H${c2}#${c3}#X ${c1}-X :///+; - ;+=;;;.@, ${c2}.X${c3}M${c2}@$. ${c1}=X.//;=#/. - ,;: :@#= =$H: .+#- - ,#= #;-///==///-// =#, -;+ :#-;;;:;;;;-X- +: -@- .-;;;;M- =M/;;;-. -X - :;;::;;-. #- :+ ,-;;-;:== - ,X H. - ;/ #= - // +; - '////' diff --git a/ascii/distro/siduction b/ascii/distro/siduction deleted file mode 100644 index c9720a60..00000000 --- a/ascii/distro/siduction +++ /dev/null @@ -1,21 +0,0 @@ -${c1} _aass, - jQh: =$w - QWmwawQW - )$QQQQ@( .. - _a_a. ~??^ syDY?Sa, - _mW>-<$c jWmi imm. - ]QQwayQE 4QQmgwmQQ` - ?WWQWP' -9QQQQQ@'._aas, - _a%is. .adYYs,. -"?!` aQB*~^3$c -_Qh;.nm .QWc. {QL ]QQp;..vmQ/ -"QQmmQ@ -QQQggmQP ]QQWmggmQQ( - -???" "$WQQQY` __, ?QQQQQQW! - _yZ!?q, - .yWY!!Sw, "???^ - .QQa_=qQ mQm>..vmm - $QQWQQP $QQQgmQQ@ - "???" _aa, -9WWQQWY` - _mB>~)$a -~~ - mQms_vmQ. - ]WQQQQQP - -?T??" - diff --git a/ascii/distro/slackware b/ascii/distro/slackware deleted file mode 100644 index 9ffde3dc..00000000 --- a/ascii/distro/slackware +++ /dev/null @@ -1,21 +0,0 @@ -${c1} ::::::: - ::::::::::::::::::: - ::::::::::::::::::::::::: - ::::::::${c2}cllcccccllllllll${c1}:::::: - :::::::::${c2}lc dc${c1}::::::: - ::::::::${c2}cl clllccllll oc${c1}::::::::: - :::::::::${c2}o lc${c1}::::::::${c2}co oc${c1}:::::::::: - ::::::::::${c2}o cccclc${c1}:::::${c2}clcc${c1}:::::::::::: - :::::::::::${c2}lc cclccclc${c1}::::::::::::: -::::::::::::::${c2}lcclcc lc${c1}:::::::::::: -::::::::::${c2}cclcc${c1}:::::${c2}lccclc oc${c1}::::::::::: -::::::::::${c2}o l${c1}::::::::::${c2}l lc${c1}::::::::::: - :::::${c2}cll${c1}:${c2}o clcllcccll o${c1}::::::::::: - :::::${c2}occ${c1}:${c2}o clc${c1}::::::::::: - ::::${c2}ocl${c1}:${c2}ccslclccclclccclclc${c1}::::::::::::: - :::${c2}oclcccccccccccccllllllllllllll${c1}::::: - ::${c2}lcc1lcccccccccccccccccccccccco${c1}:::: - :::::::::::::::::::::::::::::::: - :::::::::::::::::::::::::::: - :::::::::::::::::::::: - :::::::::::: diff --git a/ascii/distro/slitaz b/ascii/distro/slitaz deleted file mode 100644 index 5ee52706..00000000 --- a/ascii/distro/slitaz +++ /dev/null @@ -1,17 +0,0 @@ -${c1} @ @( @ - @@ @@ @ @/ - @@ @@ @@ @@ - @@ %@@ @@ @@ - @@ %@@@ @@@@@. @@@@ @@ - @@@ @@@@ @@@@@@@ &@@@ @@@ - @@@@@@@ %@@@@@@@@@@@@ &@@@% @@@@@@@/ - ,@@@@@@@@@@@@@@@@@@@@@@@@@ - .@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@/ -@@@@@@. @@@@@@@@@@@@@@@@@@@@@ /@@@@@@ -@@ @@@@@ @@@@@@@@@@@@, @@@@@ @@@ -@@ @@@@. @@@@@@@@@@@@@% #@@@@ @@. -@@ ,@@ @@@@@@@@@@@@@ @@@ @@ -@ @@. @@@@@@@@@@@@@ @@@ *@ -@ @@ @@@@@@@@@@@@ @@ @ - @ @@@@@@@@@. #@ - @ ,@@@@@ @ diff --git a/ascii/distro/smartos b/ascii/distro/smartos deleted file mode 100644 index 59cea693..00000000 --- a/ascii/distro/smartos +++ /dev/null @@ -1,17 +0,0 @@ -${c1}yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy -yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy -yyyys oyyyyyyyyyyyyyyyy -yyyys yyyyyyyyy oyyyyyyyyyyyyyyyy -yyyys yyyyyyyyy oyyyyyyyyyyyyyyyy -yyyys yyyyyyyyy oyyyyyyyyyyyyyyyy -yyyys yyyyyyyyy oyyyyyyyyyyyyyyyy -yyyys yyyyyyyyyyyyyyyyyyyyyyyyyyyy -yyyyy syyyy -yyyyyyyyyyyyyyyyyyyyyyyyyyyy syyyy -yyyyyyyyyyyyyyyy syyyyyyyyy syyyy -yyyyyyyyyyyyyyyy oyyyyyyyyy syyyy -yyyyyyyyyyyyyyyy oyyyyyyyyy syyyy -yyyyyyyyyyyyyyyy syyyyyyyyy syyyy -yyyyyyyyyyyyyyyy yyyyy -yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy -yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy diff --git a/ascii/distro/solaris b/ascii/distro/solaris deleted file mode 100644 index 95a7f1a1..00000000 --- a/ascii/distro/solaris +++ /dev/null @@ -1,8 +0,0 @@ -${c1} `- ` - `-- `+- .: - .+: `++: -/+- . - `.::` -++/``:::`./+/ `.-/. - `++/-`.` ` /++:` - `` ./:` .: `..`.- -``./+/:- -+++:- - -/+` :. diff --git a/ascii/distro/solus b/ascii/distro/solus deleted file mode 100644 index 75637543..00000000 --- a/ascii/distro/solus +++ /dev/null @@ -1,20 +0,0 @@ -${c2} -``````````` - `-+/------------.` - .---:mNo---------------. - .-----yMMMy:---------------. - `------oMMMMMm/----------------` - .------/MMMMMMMN+----------------. - .------/NMMMMMMMMm-+/--------------. -`------/NMMMMMMMMMN-:mh/-------------` -.-----/NMMMMMMMMMMM:-+MMd//oso/:-----. ------/NMMMMMMMMMMMM+--mMMMh::smMmyo:-- -----+NMMMMMMMMMMMMMo--yMMMMNo-:yMMMMd/. -.--oMMMMMMMMMMMMMMMy--yMMMMMMh:-yMMMy-` -`-sMMMMMMMMMMMMMMMMh--dMMMMMMMd:/Ny+y. -`-/+osyhhdmmNNMMMMMm-/MMMMMMMmh+/ohm+ - .------------:://+-/++++++${c1}oshddys: - -hhhhyyyyyyyyyyyhhhhddddhysssso- - `:ossssssyysssssssssssssssso:` - `:+ssssssssssssssssssss+- - `-/+ssssssssssso+/-` - `.-----..` diff --git a/ascii/distro/source_mage b/ascii/distro/source_mage deleted file mode 100644 index 39a440e8..00000000 --- a/ascii/distro/source_mage +++ /dev/null @@ -1,21 +0,0 @@ -${c2} :ymNMNho. -.+sdmNMMMMMMMMMMy` -.-::/yMMMMMMMMMMMm- - sMMMMMMMMMMMm/ - /NMMMMMMMMMMMMMm: - .MMMMMMMMMMMMMMMMM: - `MMMMMMMMMMMMMMMMMN. - NMMMMMMMMMMMMMMMMMd - mMMMMMMMMMMMMMMMMMMo - hhMMMMMMMMMMMMMMMMMM. - .`/MMMMMMMMMMMMMMMMMs - :mMMMMMMMMMMMMMMMN` - `sMMMMMMMMMMMMMMM+ - /NMMMMMMMMMMMMMN` - oMMMMMMMMMMMMM+ - ./sd.-hMMMMMMMMmmN` - ./+oyyyh- `MMMMMMMMMmNh - sMMMMMMMMMmmo - `NMMMMMMMMMd: - -dMMMMMMMMMo - -shmNMMms. diff --git a/ascii/distro/sparky b/ascii/distro/sparky deleted file mode 100644 index 82acb5a0..00000000 --- a/ascii/distro/sparky +++ /dev/null @@ -1,21 +0,0 @@ -${c1} - . `-:-` - .o` .-///-` - `oo` .:/++:. - os+` -/+++:` ``.........``` - /ys+`./+++/-.-::::::----......`` - `syyo`++o+--::::-::/+++/-`` - -yyy+.+o+`:/:-:sdmmmmmmmmdy+-` -::-` :yyy/-oo.-+/`ymho++++++oyhdmdy/` -`/yy+-`.syyo`+o..o--h..osyhhddhs+//osyy/` - -ydhs+-oyy/.+o.-: ` ` :/::+ydhy+```-os- - .sdddy::syo--/:. `.:dy+-ohhho ./: - :yddds/:+oo+//:-`- /+ +hy+.shhy: `` - `:ydmmdysooooooo-.ss`/yss--oyyo - `./ossyyyyo+:-/oo:.osso- .oys - ``..-------::////.-oooo/ :so - `...----::::::::--.`/oooo: .o: - ``````` ++o+:` `:` - ./+/-` ` - `-:-. - `` diff --git a/ascii/distro/steamos b/ascii/distro/steamos deleted file mode 100644 index c17b16b6..00000000 --- a/ascii/distro/steamos +++ /dev/null @@ -1,18 +0,0 @@ -${c1} .,,,,. - .,'onNMMMMMNNnn',. - .'oNMANKMMMMMMMMMMMNNn'. - .'ANMMMMMMMXKNNWWWPFFWNNMNn. - ;NNMMMMMMMMMMNWW'' ,.., 'WMMM, - ;NMMMMV+##+VNWWW' .+;'':+, 'WMW, -,VNNWP+${c2}######${c1}+WW, ${c2}+: ${c1}:+, +MMM, -'${c2}+#############, +. ,+' ${c1}+NMMM -${c2} '*#########*' '*,,*' ${c1}.+NMMMM. -${c2} `'*###*' ,.,;###${c1}+WNM, -${c2} .,;;, .;##########${c1}+W -${c2},',. '; ,+##############' - '###+. :,. .,; ,###############' - '####.. `'' .,###############' - '#####+++################' - '*##################*' - ''*##########*'' - '''''' diff --git a/ascii/distro/suse b/ascii/distro/suse deleted file mode 100644 index 6cc0433c..00000000 --- a/ascii/distro/suse +++ /dev/null @@ -1,18 +0,0 @@ -${c2} .;ldkO0000Okdl;. - .;d00xl:^''''''^:ok00d;. - .d00l' 'o00d. - .d0Kd'${c1} Okxol:;,. ${c2}:O0d. - .OK${c1}KKK0kOKKKKKKKKKKOxo:, ${c2}lKO. - ,0K${c1}KKKKKKKKKKKKKKK0P^${c2},,,${c1}^dx:${c2} ;00, -.OK${c1}KKKKKKKKKKKKKKKk'${c2}.oOPPb.${c1}'0k.${c2} cKO. -:KK${c1}KKKKKKKKKKKKKKK: ${c2}kKx..dd ${c1}lKd${c2} 'OK: -dKK${c1}KKKKKKKKKOx0KKKd ${c2}^0KKKO' ${c1}kKKc${c2} dKd -dKK${c1}KKKKKKKKKK;.;oOKx,..${c2}^${c1}..;kKKK0.${c2} dKd -:KK${c1}KKKKKKKKKK0o;...^cdxxOK0O/^^' ${c2}.0K: - kKK${c1}KKKKKKKKKKKKK0x;,,......,;od ${c2}lKk - '0K${c1}KKKKKKKKKKKKKKKKKKKK00KKOo^ ${c2}c00' - 'kK${c1}KKOxddxkOO00000Okxoc;'' ${c2}.dKk' - l0Ko. .c00l' - 'l0Kk:. .;xK0l' - 'lkK0xl:;,,,,;:ldO0kl' - '^:ldxkkkkxdl:^' diff --git a/ascii/distro/swagarch b/ascii/distro/swagarch deleted file mode 100644 index e3884f15..00000000 --- a/ascii/distro/swagarch +++ /dev/null @@ -1,15 +0,0 @@ -${c2} .;ldkOKXXNNNNXXK0Oxoc,. - ,lkXMMNK0OkkxkkOKWMMMMMMMMMM; - 'K0xo ..,;:c:. `'lKMMMMM0 - .lONMMMMMM' `lNMk' -${c2} ;WMMMMMMMMMO. ${c1}....::... -${c2} OMMMMMMMMMMMMKl. ${c1}.,;;;;;ccccccc, -${c2} `0MMMMMMMMMMMMMM0: ${c1}.. .ccccccc. -${c2} 'kWMMMMMMMMMMMMMNo. ${c1}.,:' .ccccccc. -${c2} `c0MMMMMMMMMMMMMN,${c1},:c; :cccccc: -${c2} ckl. `lXMMMMMMMMMX${c1}occcc:.. ;ccccccc. -${c2}dMMMMXd, `OMMMMMMWk${c1}ccc;:''` ,ccccccc: -${c2}XMMMMMMMWKkxxOWMMMMMNo${c1}ccc; .cccccccc. -${c2} `':ldxO0KXXXXXK0Okdo${c1}cccc. :cccccccc. - :ccc:' `cccccccc:, - '' diff --git a/ascii/distro/tails b/ascii/distro/tails deleted file mode 100644 index a0512bc6..00000000 --- a/ascii/distro/tails +++ /dev/null @@ -1,19 +0,0 @@ -${c1} `` - ./yhNh -syy/Nshh `:o/ -N:dsNshh █ `ohNMMd -N-/+Nshh `yMMMMd -N-yhMshh yMMMMd -N-s:hshh █ yMMMMd so//. -N-oyNsyh yMMMMd d Mms. -N:hohhhd:. yMMMMd syMMM+ -Nsyh+-..+y+- yMMMMd :mMM+ -+hy- -ss/`yMMMM `+d+ - :sy/. ./yNMMMMm `` - .+ys- `:+hNMMMMMMy/` - `hNmmMMMMMMMMMMMMdo. - dMMMMMMMMMMMMMMMMMNh: - +hMMMMMMMMMMMMMMMMMmy. - -oNMMMMMMMMMMmy+.` - `:yNMMMds/.` - .//` diff --git a/ascii/distro/trisquel b/ascii/distro/trisquel deleted file mode 100644 index 07634b83..00000000 --- a/ascii/distro/trisquel +++ /dev/null @@ -1,18 +0,0 @@ -${c1} ▄▄▄▄▄▄ - ▄█████████▄ - ▄▄▄▄▄▄ ████▀ ▀████ - ▄██████████▄ ████▀ ▄▄ ▀███ - ▄███▀▀ ▀▀████ ███▄ ▄█ ███ -▄███ ▄▄▄ ████▄ ▀██████ ▄███ -███ █▀▀██▄ █████▄ ▀▀ ▄████ -▀███ ███ ███████▄▄ ▄▄██████ -${c1} ▀███▄ ▄███ █████████████${c2}████▀ -${c1} ▀█████████ ███████${c2}███▀▀▀ - ▀▀███▀▀ ██████▀▀ - ██████▀ ▄▄▄▄ - █████▀ ████████ - █████ ███▀ ▀███ - ████▄ ██▄▄▄ ███ - █████▄ ▀▀ ▄██ - ██████▄▄▄████ - ▀▀█████▀▀ diff --git a/ascii/distro/trueos b/ascii/distro/trueos deleted file mode 100644 index 84bc618a..00000000 --- a/ascii/distro/trueos +++ /dev/null @@ -1,27 +0,0 @@ -${c1} .. - s. - +y - yN - -MN `. - :NMs `m - .yMMm` `No - `-/+++sdMMMNs+-`+Ms - `:oo+-` .yMMMMy` `-+oNMh - -oo- +NMMMM/ oMMh- - .s+` ` oMMMMM/ - oMMMhy. - +s`- :: :MMMMMd -o `mMMMy`s+ - y+ h .Ny+oNMMMMMN/ sh+NMMMMo +y - s+ .ds -NMMMMMMMMMMNdhdNMMMMMMh` +s --h .NM` `hMMMMMMMMMMMMMMNMMNy: h- -y- hMN` hMMmMMMMMMMMMNsdMNs. -y -m` mMMy` oMMNoNMMMMMMo` sMMMo `m -m` :NMMMdyydMMMMo+MdMMMs sMMMd` `m -h- `+ymMMMMMMMM--M+hMMN/ +MMMMy -h -:y `.sMMMMM/ oMM+.yMMNddNMMMMMm y: - y: `s dMMN- .MMMM/ :MMMMMMMMMMh :y - `h: `mdmMMM/ yMMMMs sMMMMMMMMN- :h` - so -NMMMN /mmd+ `dMMMMMMMm- os - :y: `yMMM` `+NMMMMMMNo`:y: - /s+`.omy /NMMMMMNh/.+s: - .+oo:-. /mdhs+::oo+. - -/o+++++++++++/- diff --git a/ascii/distro/tumbleweed b/ascii/distro/tumbleweed deleted file mode 100644 index 37ee33ad..00000000 --- a/ascii/distro/tumbleweed +++ /dev/null @@ -1,13 +0,0 @@ -${c2} ...... - .,cdxxxoc,. .:kKMMMNWMMMNk:. - cKMMN0OOOKWMMXo. ; ;0MWk:. .:OMMk. - ;WMK;. .lKMMNM, :NMK, .OMW; - cMW; 'WMMMN ,XMK, oMM' -.MMc ..;l. xMN: KM0 -'MM. 'NMO oMM -.MM, .kMMl xMN - KM0 .kMM0. .dl:,.. .WMd - .XM0. ,OMMK, OMMMK. .XMK - oWMO:. .;xNMMk, NNNMKl. .xWMx - :ONMMNXMMMKx; . ,xNMWKkxllox0NMWk, - ..... .:dOOXXKOxl, diff --git a/ascii/distro/ubuntu b/ascii/distro/ubuntu deleted file mode 100644 index db5df090..00000000 --- a/ascii/distro/ubuntu +++ /dev/null @@ -1,20 +0,0 @@ -${c1} .-/+oossssoo+/-. - `:+ssssssssssssssssss+:` - -+ssssssssssssssssssyyssss+- - .ossssssssssssssssss${c2}dMMMNy${c1}sssso. - /sssssssssss${c2}hdmmNNmmyNMMMMh${c1}ssssss/ - +sssssssss${c2}hm${c1}yd${c2}MMMMMMMNddddy${c1}ssssssss+ - /ssssssss${c2}hNMMM${c1}yh${c2}hyyyyhmNMMMNh${c1}ssssssss/ -.ssssssss${c2}dMMMNh${c1}ssssssssss${c2}hNMMMd${c1}ssssssss. -+ssss${c2}hhhyNMMNy${c1}ssssssssssss${c2}yNMMMy${c1}sssssss+ -oss${c2}yNMMMNyMMh${c1}ssssssssssssss${c2}hmmmh${c1}ssssssso -oss${c2}yNMMMNyMMh${c1}sssssssssssssshmmmh${c1}ssssssso -+ssss${c2}hhhyNMMNy${c1}ssssssssssss${c2}yNMMMy${c1}sssssss+ -.ssssssss${c2}dMMMNh${c1}ssssssssss${c2}hNMMMd${c1}ssssssss. - /ssssssss${c2}hNMMM${c1}yh${c2}hyyyyhdNMMMNh${c1}ssssssss/ - +sssssssss${c2}dm${c1}yd${c2}MMMMMMMMddddy${c1}ssssssss+ - /sssssssssss${c2}hdmNNNNmyNMMMMh${c1}ssssss/ - .ossssssssssssssssss${c2}dMMMNy${c1}sssso. - -+sssssssssssssssss${c2}yyy${c1}ssss+- - `:+ssssssssssssssssss+:` - .-/+oossssoo+/-. diff --git a/ascii/distro/ubuntu-budgie b/ascii/distro/ubuntu-budgie deleted file mode 100644 index 1faec715..00000000 --- a/ascii/distro/ubuntu-budgie +++ /dev/null @@ -1,20 +0,0 @@ -${c2} ./oydmMMMMMMmdyo/. - :smMMMMMMMMMMMhs+:++yhs: - `omMMMMMMMMMMMN+` `odo` - /NMMMMMMMMMMMMN- `sN/ - `hMMMMmhhmMMMMMMh sMh` - .mMmo- /yMMMMm` `MMm. - mN/ yMMMMMMMd- MMMm -oN- oMMMMMMMMMms+//+o+: :MMMMo -m/ +NMMMMMMMMMMMMMMMMm. :NMMMMm -M` .NMMMMMMMMMMMMMMMNodMMMMMMM -M- sMMMMMMMMMMMMMMMMMMMMMMMMM -mm` mMMMMMMMMMNdhhdNMMMMMMMMMm -oMm/ .dMMMMMMMMh: :dMMMMMMMo - mMMNyo/:/sdMMMMMMMMM+ sMMMMMm - .mMMMMMMMMMMMMMMMMMs `NMMMm. - `hMMMMMMMMMMM.oo+. `MMMh` - /NMMMMMMMMMo sMN/ - `omMMMMMMMMy. :dmo` - :smMMMMMMMh+-` `.:ohs: - ./oydmMMMMMMdhyo/. diff --git a/ascii/distro/ubuntu-gnome b/ascii/distro/ubuntu-gnome deleted file mode 100644 index 096dca3d..00000000 --- a/ascii/distro/ubuntu-gnome +++ /dev/null @@ -1,16 +0,0 @@ -${c3} ./o. - .oooooooo - .oooo```soooo - .oooo` `soooo - .ooo` ${c4}.o.${c3} `\/ooo. - :ooo ${c4}:oooo.${c3} `\/ooo. - sooo ${c4}`ooooo${c3} \/oooo - \/ooo ${c4}`soooo${c3} `ooooo - `soooo ${c4}`\/ooo${c3} `soooo -${c4}./oo ${c3}`\/ooo ${c4}`/oooo.${c3} `/ooo -${c4}`\/ooo. ${c3}`/oooo. ${c4}`/oooo.${c3} `` -${c4} `\/ooo. ${c3}/oooo ${c4}/ooo` -${c4} `ooooo ${c3}`` ${c4}.oooo -${c4} `soooo. .oooo` - `\/oooooooooo` - ``\/oo`` diff --git a/ascii/distro/ubuntu-mate b/ascii/distro/ubuntu-mate deleted file mode 100644 index 893389fe..00000000 --- a/ascii/distro/ubuntu-mate +++ /dev/null @@ -1,20 +0,0 @@ -${c1} `:+shmNNMMNNmhs+:` - .odMMMMMMMMMMMMMMMMMMdo. - /dMMMMMMMMMMMMMMMmMMMMMMMMd/ - :mMMMMMMMMMMMMNNNNM/`/yNMMMMMMm: - `yMMMMMMMMMms:..-::oM: -omMMMMMy` - `dMMMMMMMMy-.odNMMMMMM: -odMMMMMMd` - hMMMMMMMm-.hMMy/....+M:`/yNm+mMMMMMMMh -/MMMMNmMN-:NMy`-yNMMMMMmNyyMN:`dMMMMMMM/ -hMMMMm -odMMh`sMMMMMMMMMMs sMN..MMMMMMMh -NMMMMm `/yNMMMMMMMMMMMM: MM+ mMMMMMMN -NMMMMm `/yNMMMMMMMMMMMM: MM+ mMMMMMMN -hMMMMm -odMMh sMMMMMMMMMMs oMN..MMMMMMMh -/MMMMNNMN-:NMy`-yNMMMMMNNsyMN:`dMMMMMMM/ - hMMMMMMMm-.hMMy/....+M:.+hNd+mMMMMMMMh - `dMMMMMMMMy-.odNMMMMMM: :smMMMMMMd` - yMMMMMMMMMms/..-::oM: .+dMMMMMy - :mMMMMMMMMMMMMNNNNM: :smMMMMMMm: - /dMMMMMMMMMMMMMMMdNMMMMMMMd/ - .odMMMMMMMMMMMMMMMMMMdo. - `:+shmNNMMNNmhs+:` diff --git a/ascii/distro/ubuntu-studio b/ascii/distro/ubuntu-studio deleted file mode 100644 index 2deb270e..00000000 --- a/ascii/distro/ubuntu-studio +++ /dev/null @@ -1,20 +0,0 @@ -${c1} ..-::::::-.` - `.:+++++++++++${c2}ooo${c1}++:.` - ./+++++++++++++${c2}sMMMNdyo${c1}+/. - .++++++++++++++++${c2}oyhmMMMMms${c1}++. - `/+++++++++${c2}osyhddddhys${c1}+${c2}osdMMMh${c1}++/` - `+++++++++${c2}ydMMMMNNNMMMMNds${c1}+${c2}oyyo${c1}++++` - +++++++++${c2}dMMNhso${c1}++++${c2}oydNMMmo${c1}++++++++` - :+${c2}odmy${c1}+++${c2}ooysoohmNMMNmyoohMMNs${c1}+++++++: - ++${c2}dMMm${c1}+${c2}oNMd${c1}++${c2}yMMMmhhmMMNs+yMMNo${c1}+++++++ -`++${c2}NMMy${c1}+${c2}hMMd${c1}+${c2}oMMMs${c1}++++${c2}sMMN${c1}++${c2}NMMs${c1}+++++++. -`++${c2}NMMy${c1}+${c2}hMMd${c1}+${c2}oMMMo${c1}++++${c2}sMMN${c1}++${c2}mMMs${c1}+++++++. - ++${c2}dMMd${c1}+${c2}oNMm${c1}++${c2}yMMNdhhdMMMs${c1}+y${c2}MMNo${c1}+++++++ - :+${c2}odmy${c1}++${c2}oo${c1}+${c2}ss${c1}+${c2}ohNMMMMmho${c1}+${c2}yMMMs${c1}+++++++: - +++++++++${c2}hMMmhs+ooo+oshNMMms${c1}++++++++ - `++++++++${c2}oymMMMMNmmNMMMMmy+oys${c1}+++++` - `/+++++++++${c2}oyhdmmmmdhso+sdMMMs${c1}++/ - ./+++++++++++++++${c2}oyhdNMMMms${c1}++. - ./+++++++++++++${c2}hMMMNdyo${c1}+/. - `.:+++++++++++${c2}sso${c1}++:. - ..-::::::-.. diff --git a/ascii/distro/ubuntu_old b/ascii/distro/ubuntu_old deleted file mode 100644 index 4e3664b6..00000000 --- a/ascii/distro/ubuntu_old +++ /dev/null @@ -1,19 +0,0 @@ - -${c1} ./+o+- -${c2} yyyyy- ${c1}-yyyyyy+ -${c2} ${c2}://+//////${c1}-yyyyyyo -${c3} .++ ${c2}.:/++++++/-${c1}.+sss/` -${c3} .:++o: ${c2}/++++++++/:--:/- -${c3} o:+o+:++.${c2}`..```.-/oo+++++/ -${c3} .:+o:+o/.${c2} `+sssoo+/ -${c2} .++/+:${c3}+oo+o:`${c2} /sssooo. -${c2}/+++//+:${c3}`oo+o${c2} /::--:. -${c2}+/+o+++${c3}`o++o${c1} ++////. -${c2} .++.o+${c3}++oo+:`${c1} /dddhhh. -${c3} .+.o+oo:.${c1} `oddhhhh+ -${c3} +.++o+o`${c1}`-````.:ohdhhhhh+ -${c3} `:o+++ ${c1}`ohhhhhhhhyo++os: -${c3} .o:${c1}`.syhhhhhhh/${c3}.oo++o` -${c1} /osyyyyyyo${c3}++ooo+++/ -${c1} ````` ${c3}+oo+++o: -${c3} `oo++. diff --git a/ascii/distro/void b/ascii/distro/void deleted file mode 100644 index 2a089e63..00000000 --- a/ascii/distro/void +++ /dev/null @@ -1,18 +0,0 @@ -${c1} __.;=====;.__ - _.=+==++=++=+=+===;. - -=+++=+===+=+=+++++=_ - . -=:`` `--==+=++==. - _vi, ` --+=++++: - .uvnvi. _._ -==+==+. - .vvnvnI` .;==|==;. :|=||=|. -${c2}+QmQQm${c1}pvvnv; ${c2}_yYsyQQWUUQQQm #QmQ#${c1}:${c2}QQQWUV$QQmL -${c2} -QQWQW${c1}pvvo${c2}wZ?.wQQQE${c1}==<${c2}QWWQ/QWQW.QQWW${c1}(: ${c2}jQWQE -${c2} -$QQQQmmU' jQQQ@${c1}+=<${c2}QWQQ)mQQQ.mQQQC${c1}+;${c2}jWQQ@' -${c2} -$WQ8Y${c1}nI: ${c2}QWQQwgQQWV${c1}`${c2}mWQQ.jQWQQgyyWW@! -${c1} -1vvnvv. `~+++` ++|+++ - +vnvnnv, `-|=== - +vnvnvns. . :=- - -Invnvvnsi..___..=sv=. ` - +Invnvnvnnnnnnnnvvnn;. - ~|Invnvnvvnvvvnnv}+` - -~|{*l}*|~ diff --git a/ascii/distro/void_small b/ascii/distro/void_small deleted file mode 100644 index adfae49b..00000000 --- a/ascii/distro/void_small +++ /dev/null @@ -1,7 +0,0 @@ -${c1} _______ - _ \______ - -| \ ___ \ | -| | / \ | | -| | \___/ | | -| \______ \_| - -_______\ diff --git a/ascii/distro/windows b/ascii/distro/windows deleted file mode 100644 index 31564309..00000000 --- a/ascii/distro/windows +++ /dev/null @@ -1,16 +0,0 @@ -${c1} ,.=:!!t3Z3z., - :tt:::tt333EE3 -${c1} Et:::ztt33EEEL${c2} @Ee., .., -${c1} ;tt:::tt333EE7${c2} ;EEEEEEttttt33# -${c1} :Et:::zt333EEQ.${c2} $EEEEEttttt33QL -${c1} it::::tt333EEF${c2} @EEEEEEttttt33F -${c1} ;3=*^```"*4EEV${c2} :EEEEEEttttt33@. -${c3} ,.=::::!t=., ${c1}`${c2} @EEEEEEtttz33QF -${c3} ;::::::::zt33)${c2} "4EEEtttji3P* -${c3} :t::::::::tt33.${c4}:Z3z..${c2} ``${c4} ,..g. -${c3} i::::::::zt33F${c4} AEEEtttt::::ztF -${c3} ;:::::::::t33V${c4} ;EEEttttt::::t3 -${c3} E::::::::zt33L${c4} @EEEtttt::::z3F -${c3}{3=*^```"*4E3)${c4} ;EEEtttt:::::tZ` -${c3} `${c4} :EEEEtttt::::z7 - "VEzjt:;;z>*` diff --git a/ascii/distro/windows10 b/ascii/distro/windows10 deleted file mode 100644 index 62596129..00000000 --- a/ascii/distro/windows10 +++ /dev/null @@ -1,19 +0,0 @@ -${c1} .., - ....,,:;+ccllll - ...,,+:; cllllllllllllllllll -,cclllllllllll lllllllllllllllllll -llllllllllllll lllllllllllllllllll -llllllllllllll lllllllllllllllllll -llllllllllllll lllllllllllllllllll -llllllllllllll lllllllllllllllllll -llllllllllllll lllllllllllllllllll - -llllllllllllll lllllllllllllllllll -llllllllllllll lllllllllllllllllll -llllllllllllll lllllllllllllllllll -llllllllllllll lllllllllllllllllll -llllllllllllll lllllllllllllllllll -`'ccllllllllll lllllllllllllllllll - `' \\*:: :ccllllllllllllllll - ````''*::cll - `` diff --git a/ascii/distro/xubuntu b/ascii/distro/xubuntu deleted file mode 100644 index b872562b..00000000 --- a/ascii/distro/xubuntu +++ /dev/null @@ -1,20 +0,0 @@ -${c1} `-/osyhddddhyso/-` - .+yddddddddddddddddddy+. - :yddddddddddddddddddddddddy: - -yddddddddddddddddddddhdddddddy- - odddddddddddyshdddddddh`dddd+ydddo - `yddddddhshdd- ydddddd+`ddh.:dddddy` - sddddddy /d. :dddddd-:dy`-ddddddds -:ddddddds /+ .dddddd`yy`:ddddddddd: -sdddddddd` . .-:/+ssdyodddddddddds -ddddddddy `:ohddddddddd -dddddddd. +dddddddd -sddddddy ydddddds -:dddddd+ .oddddddd: - sdddddo ./ydddddddds - `yddddd. `:ohddddddddddy` - oddddh/` `.:+shdddddddddddddo - -ydddddhyssyhdddddddddddddddddy- - :yddddddddddddddddddddddddy: - .+yddddddddddddddddddy+. - `-/osyhddddhyso/-` diff --git a/ascii/distro/zorin b/ascii/distro/zorin deleted file mode 100644 index bb051669..00000000 --- a/ascii/distro/zorin +++ /dev/null @@ -1,17 +0,0 @@ -${c1} `osssssssssssssssssssso` - .osssssssssssssssssssssso. - .+oooooooooooooooooooooooo+. - - - `::::::::::::::::::::::. .:` - `+ssssssssssssssssss+:.` `.:+ssso` -.ossssssssssssssso/. `-+ossssssso. -ssssssssssssso/-` `-/osssssssssssss -.ossssssso/-` .-/ossssssssssssssso. - `+sss+:. `.:+ssssssssssssssssss+` - `:. .::::::::::::::::::::::` - - - .+oooooooooooooooooooooooo+. - -osssssssssssssssssssssso- - `osssssssssssssssssssso` diff --git a/config/travis.conf b/config/travis.conf deleted file mode 100644 index 0dada093..00000000 --- a/config/travis.conf +++ /dev/null @@ -1,55 +0,0 @@ -# Neofetch config file for travis.ci -# https://github.com/dylanaraps/neofetch - -print_info() { - info title - info underline - - info "OS" distro - info "Host" model - info "Kernel" kernel - info "Uptime" uptime - info "Packages" packages - info "Shell" shell - info "Resolution" resolution - info "DE" de - info "WM" wm - info "WM Theme" wm_theme - info "Theme" theme - info "Icons" icons - info "Terminal" term - info "Terminal Font" term_font - info "CPU" cpu - info "GPU" gpu - info "GPU Driver" gpu_driver - info "Memory" memory - - info "CPU Usage" cpu_usage - info "Disk" disk - info "Battery" battery - info "Font" font - info "Song" song - info "Local IP" local_ip - info "Public IP" public_ip - info "Users" users - info "Install Date" install_date - - info line_break - info cols - info line_break - - # Testing. - prin "prin" - prin "prin" "prin" - - # Testing no subtitles. - info uptime - info disk -} - -refresh_rate="on" -shell_version="on" -cpu_display="infobar" -memory_display="infobar" -disk_display="infobar" -cpu_temp="C" diff --git a/neofetch b/neofetch index 128e23bc..98e94d89 100755 --- a/neofetch +++ b/neofetch @@ -3450,6 +3450,8 @@ get_ascii() { # Fallback to distro ascii mode if source is an image. [[ "$image_source" =~ \.(png|jpg|jpe|jpeg|gif)$ ]] && \ err "Image: Source is image file but ascii backend was selected. Using distro ascii." + else + ascii_data="$(< "$image_source")" fi # Set locale to get correct padding. @@ -8551,6 +8553,61 @@ get_args() { -N ./neofetch -o neofetch.1 exit 1 ;; + + "--travis") + print_info() { + info title + info underline + + info "OS" distro + info "Host" model + info "Kernel" kernel + info "Uptime" uptime + info "Packages" packages + info "Shell" shell + info "Resolution" resolution + info "DE" de + info "WM" wm + info "WM Theme" wm_theme + info "Theme" theme + info "Icons" icons + info "Terminal" term + info "Terminal Font" term_font + info "CPU" cpu + info "GPU" gpu + info "GPU Driver" gpu_driver + info "Memory" memory + + info "CPU Usage" cpu_usage + info "Disk" disk + info "Battery" battery + info "Font" font + info "Song" song + info "Local IP" local_ip + info "Public IP" public_ip + info "Users" users + info "Install Date" install_date + + info line_break + info cols + info line_break + + # Testing. + prin "prin" + prin "prin" "prin" + + # Testing no subtitles. + info uptime + info disk + } + + refresh_rate="on" + shell_version="on" + cpu_display="infobar" + memory_display="infobar" + disk_display="infobar" + cpu_temp="C" + ;; esac shift From d52ba624bfeea254a06ec3aabbf721d8061bd1c5 Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Thu, 3 May 2018 15:05:42 +1000 Subject: [PATCH 16/25] general: Adjust makefile --- Makefile | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/Makefile b/Makefile index 99ec43b2..7870d456 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,4 @@ PREFIX ?= /usr -SYSCONFDIR ?= /etc MANDIR ?= $(PREFIX)/share/man all: @@ -8,22 +7,15 @@ all: install: @echo 'Making directories...' @mkdir -p $(DESTDIR)$(PREFIX)/bin - @mkdir -p $(DESTDIR)$(PREFIX)/share/neofetch/ascii/distro @mkdir -p $(DESTDIR)$(MANDIR)/man1 - @mkdir -p $(DESTDIR)$(SYSCONFDIR)/neofetch @echo 'Installing binaries...' - @sed "s|ASCIIDIR|$(PREFIX)/share/neofetch/ascii/distro|g;s|CONFDIR|$(SYSCONFDIR)/neofetch|g" < neofetch > $(DESTDIR)$(PREFIX)/bin/neofetch @chmod 755 $(DESTDIR)$(PREFIX)/bin/neofetch - @echo 'Installing ASCII files, man page and config file...' - @cp -p ascii/distro/* $(DESTDIR)$(PREFIX)/share/neofetch/ascii/distro + @echo 'Installing man page...' @cp -p neofetch.1 $(DESTDIR)$(MANDIR)/man1 - @cp -p config/config.conf $(DESTDIR)$(SYSCONFDIR)/neofetch/config.conf uninstall: @echo 'Removing files...' @rm -rf $(DESTDIR)$(PREFIX)/bin/neofetch @rm -rf $(DESTDIR)$(MANDIR)/man1/neofetch.1* - @rm -rf $(DESTDIR)$(PREFIX)/share/neofetch - @rm -rf $(DESTDIR)$(SYSCONFDIR)/neofetch From 3e9c76a830b449745e72550c6193607d0f10efc3 Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Thu, 3 May 2018 15:12:42 +1000 Subject: [PATCH 17/25] theme: Fixes for bash3 --- neofetch | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/neofetch b/neofetch index 98e94d89..c23974f0 100755 --- a/neofetch +++ b/neofetch @@ -32,7 +32,7 @@ shopt -s nocasematch reset="\e[0m" # Neofetch default config. -readarray -t config <<'EOM' +read -rd '' config <<'EOF' # See this wiki page for more info: # https://github.com/dylanaraps/neofetch/wiki/Customizing-Info print_info() { @@ -801,7 +801,7 @@ stdout="off" # NOTE: Don't change this value, neofetch reads this to determine # how to handle backwards compatibility. config_version="3.4.1-git" -EOM +EOF # DETECT INFORMATION @@ -7836,7 +7836,7 @@ get_user_config() { config_file="${XDG_CONFIG_HOME}/neofetch/config.conf" # The config file doesn't exist, create it. - printf "%s\n" "${config[@]}" > "$config_file" + printf "%s\n" "$config" > "$config_file" fi source "$config_file" @@ -8619,7 +8619,7 @@ main() { get_os # Load default config. - source /dev/stdin < <(printf "%s\\n" "${config[@]}") + source /dev/stdin < <(printf "%s\n" "$config") get_args "$@" [[ "$verbose" != "on" ]] && exec 2>/dev/null From a982b0b5099fae0580218a92b26dd026bec00d01 Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Thu, 3 May 2018 15:17:43 +1000 Subject: [PATCH 18/25] ascii: Update android ascii --- neofetch | 32 ++++++++++++++++++-------------- 1 file changed, 18 insertions(+), 14 deletions(-) diff --git a/neofetch b/neofetch index c23974f0..2f421ae1 100755 --- a/neofetch +++ b/neofetch @@ -4271,21 +4271,25 @@ EOF "Android"*) set_colors 2 7 - ascii_length_force=19 read -rd '' ascii_data <<'EOF' -${c1} ╲ ▁▂▂▂▁ ╱ - ▄███████▄ - ▄██${c2} ${c1}███${c2} ${c1}██▄ - ▄███████████▄ -▄█ ▄▄▄▄▄▄▄▄▄▄▄▄▄ █▄ -██ █████████████ ██ -██ █████████████ ██ -██ █████████████ ██ -██ █████████████ ██ - █████████████ - ███████████ - ██ ██ - ██ ██ +${c1} -o o- + +hydNNNNdyh+ + +mMMMMMMMMMMMMm+ + `dMM${c2}m:${c1}NMMMMMMN${c2}:m${c1}MMd` + hMMMMMMMMMMMMMMMMMMh + .. yyyyyyyyyyyyyyyyyyyy .. +.mMMm`MMMMMMMMMMMMMMMMMMMM`mMMm. +:MMMM-MMMMMMMMMMMMMMMMMMMM-MMMM: +:MMMM-MMMMMMMMMMMMMMMMMMMM-MMMM: +:MMMM-MMMMMMMMMMMMMMMMMMMM-MMMM: +:MMMM-MMMMMMMMMMMMMMMMMMMM-MMMM: +-MMMM-MMMMMMMMMMMMMMMMMMMM-MMMM- + +yy+ MMMMMMMMMMMMMMMMMMMM +yy+ + mMMMMMMMMMMMMMMMMMMm + `/++MMMMh++hMMMM++/` + MMMMo oMMMM + MMMMo oMMMM + oNMm- -mMNs EOF ;; From 7b0d8c2d090dfc94777f8ac49200f21502fea7e6 Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Thu, 3 May 2018 15:21:33 +1000 Subject: [PATCH 19/25] travis: Added another exclude. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index f96df785..af3a372e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,7 +13,7 @@ script: - time ./neofetch --ascii --config config/travis.conf -v # See this wiki page for why we're disabling these errors. # https://github.com/dylanaraps/neofetch/wiki/Shellcheck-Exclusions - - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then shellcheck neofetch -e SC1090,SC2009,SC2012,SC2016,SC2034,SC2128,SC2153,SC2154,SC2178,SC2010,SC1004,SC1117; fi + - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then shellcheck neofetch -e SC1090,SC2009,SC2012,SC2016,SC2034,SC2128,SC2153,SC2154,SC2178,SC2010,SC1004,SC1091,SC1117; fi # The if statement is here to invert the exit code from grep. # grep normally errors if no match is found but we want the opposite. # We invert it so grep fails if a match is found. From f5a50d52fc76dfe41ac4392ec6426bb1d5cb81a0 Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Thu, 3 May 2018 15:22:25 +1000 Subject: [PATCH 20/25] travis: Remove line limit. Will still be enforced by hand. --- .travis.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index af3a372e..532ca462 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,7 +14,3 @@ script: # See this wiki page for why we're disabling these errors. # https://github.com/dylanaraps/neofetch/wiki/Shellcheck-Exclusions - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then shellcheck neofetch -e SC1090,SC2009,SC2012,SC2016,SC2034,SC2128,SC2153,SC2154,SC2178,SC2010,SC1004,SC1091,SC1117; fi - # The if statement is here to invert the exit code from grep. - # grep normally errors if no match is found but we want the opposite. - # We invert it so grep fails if a match is found. - - if grep '.\{101\}' neofetch; then (exit 1); else (exit 0); fi From a796d41fa856cbb29ce30c15649f2d7a1bff76cd Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Thu, 3 May 2018 16:09:04 +1000 Subject: [PATCH 21/25] General: Move ascii art to the bottom of the script. --- neofetch | 1816 +++++++++++++++++++++++++++--------------------------- 1 file changed, 908 insertions(+), 908 deletions(-) diff --git a/neofetch b/neofetch index 2f421ae1..a2dd2d3d 100755 --- a/neofetch +++ b/neofetch @@ -4140,6 +4140,914 @@ uppercase() { # COLORS +set_colors() { + c1="$(color "$1")${ascii_bold}" + c2="$(color "$2")${ascii_bold}" + c3="$(color "$3")${ascii_bold}" + c4="$(color "$4")${ascii_bold}" + c5="$(color "$5")${ascii_bold}" + c6="$(color "$6")${ascii_bold}" + + [[ "$color_text" != "off" ]] && set_text_colors "$@" +} + +set_text_colors() { + if [[ "${colors[0]}" == "distro" ]]; then + title_color="$(color "$1")" + at_color="$reset" + underline_color="$reset" + subtitle_color="$(color "$2")" + colon_color="$reset" + info_color="$reset" + + # If the ascii art uses 8 as a color, make the text the fg. + ((${1:-1} == 8)) && title_color="$reset" + ((${2:-7} == 8)) && subtitle_color="$reset" + + # If the second color is white use the first for the subtitle. + ((${2:-7} == 7)) && subtitle_color="$(color "$1")" + ((${1:-1} == 7)) && title_color="$reset" + else + title_color="$(color "${colors[0]}")" + at_color="$(color "${colors[1]}")" + underline_color="$(color "${colors[2]}")" + subtitle_color="$(color "${colors[3]}")" + colon_color="$(color "${colors[4]}")" + info_color="$(color "${colors[5]}")" + fi + + # Bar colors. + if [[ "$bar_color_elapsed" == "distro" ]]; then + bar_color_elapsed="$(color fg)" + else + bar_color_elapsed="$(color "$bar_color_elapsed")" + fi + + case "$bar_color_total $1" in + "distro "[736]) bar_color_total="$(color "$1")" ;; + "distro "[0-9]) bar_color_total="$(color "$2")" ;; + *) bar_color_total="$(color "$bar_color_total")" ;; + esac +} + +color() { + case "$1" in + [0-6]) printf "%b" "${reset}\e[3${1}m" ;; + 7 | "fg") printf "%b" "\e[37m${reset}" ;; + *) printf "%b" "\e[38;5;${1}m" ;; + esac +} + +# OTHER + +stdout() { + image_backend="off" + unset subtitle_color + unset colon_color + unset info_color + unset underline_color + unset bold + unset title_color + unset at_color + unset text_padding + unset zws + unset reset + unset color_blocks + unset get_line_break +} + +err() { + err+="$(color 1)[!]\e[0m $1\n" +} + +get_full_path() { + # This function finds the absolute path from a relative one. + # For example "Pictures/Wallpapers" --> "/home/dylan/Pictures/Wallpapers" + + # If the file exists in the current directory, stop here. + [[ -f "${PWD}/${1/*\/}" ]] && { printf "%s\n" "${PWD}/${1/*\/}"; return; } + + if ! cd "${1%/*}"; then + err "Error: Directory '${1%/*}' doesn't exist or is inaccessible" + err " Check that the directory exists or try another directory." + exit 1 + fi + + local full_dir="${1##*/}" + + # Iterate down a (possible) chain of symlinks. + while [[ -L "$full_dir" ]]; do + full_dir="$(readlink "$full_dir")" + cd "${full_dir%/*}" || exit + full_dir="${full_dir##*/}" + done + + # Final directory. + full_dir="$(pwd -P)/${1/*\/}" + + [[ -e "$full_dir" ]] && printf "%s\n" "$full_dir" +} + +get_user_config() { + # Check $config_file. + if [[ -f "$config_file" ]]; then + source "$config_file" + err "Config: Sourced user config. (${config_file})" + old_options + return + fi + mkdir -p "${XDG_CONFIG_HOME}/neofetch/" + + # Check ${XDG_CONFIG_HOME}/neofetch and create the + # dir/files if they don't exist. + if [[ -f "${XDG_CONFIG_HOME}/neofetch/config" ]]; then + config_file="${XDG_CONFIG_HOME}/neofetch/config" + + elif [[ -f "${XDG_CONFIG_HOME}/neofetch/config.conf" ]]; then + config_file="${XDG_CONFIG_HOME}/neofetch/config.conf" + + else + config_file="${XDG_CONFIG_HOME}/neofetch/config.conf" + + # The config file doesn't exist, create it. + printf "%s\n" "$config" > "$config_file" + fi + + source "$config_file" + err "Config: Sourced user config. (${config_file})" + old_options +} + +bar() { + # Get the values. + elapsed="$(($1 * bar_length / $2))" + + # Create the bar with spaces. + printf -v prog "%${elapsed}s" + printf -v total "%$((bar_length - elapsed))s" + + # Set the colors and swap the spaces for $bar_char_. + bar+="${bar_color_elapsed}${prog// /${bar_char_elapsed}}" + bar+="${bar_color_total}${total// /${bar_char_total}}" + + # Borders. + [[ "$bar_border" == "on" ]] && \ + bar="$(color fg)[${bar}$(color fg)]" + + printf "%b" "${bar}${info_color}" +} + +cache() { + if [[ "$2" ]]; then + mkdir -p "${cache_dir}/neofetch" + printf "%s" "${1/*-}=\"$2\"" > "${cache_dir}/neofetch/${1/*-}" + fi +} + +get_cache_dir() { + case "$os" in + "Mac OS X") cache_dir="/Library/Caches" ;; + *) cache_dir="/tmp" ;; + esac +} + +kde_config_dir() { + # If the user is using KDE get the KDE + # configuration directory. + if [[ "$kde_config_dir" ]]; then + return + + elif type -p kf5-config >/dev/null 2>&1; then + kde_config_dir="$(kf5-config --path config)" + + elif type -p kde4-config >/dev/null 2>&1; then + kde_config_dir="$(kde4-config --path config)" + + elif type -p kde-config >/dev/null 2>&1; then + kde_config_dir="$(kde-config --path config)" + + elif [[ -d "${HOME}/.kde4" ]]; then + kde_config_dir="${HOME}/.kde4/share/config" + + elif [[ -d "${HOME}/.kde3" ]]; then + kde_config_dir="${HOME}/.kde3/share/config" + fi + + kde_config_dir="${kde_config_dir/$'/:'*}" +} + +get_term_padding() { + # Terminal info. + # + # Parse terminal config files to get + # info about padding. Due to how w3m-img + # works padding around the terminal throws + # off the cursor placement calculation in + # specific terminals. + # + # Note: This issue only seems to affect + # URxvt. + ((term_run != 1)) && get_term + + case "$term" in + "URxvt"*) + border="$(xrdb -query | awk -F ':' '/^(URxvt|\*).internalBorder/ {printf $2; exit}')" + ;; + esac +} + +dynamic_prompt() { + case "$image_backend" in + "ascii") printf "\n" ;; + "off") return ;; + *) + get_term_padding + lines="$(((border + height + yoffset) / font_height))" + image_prompt="on" + ;; + esac + + # If the info is higher than the ascii/image place the prompt + # based on the info height instead of the ascii/image height. + if ((lines < info_height)); then + [[ "$image_prompt" ]] && printf "\n" + return + else + [[ "$image_prompt" ]] && printf "%b\n" "$line_breaks" + lines="$((lines - info_height + 1))" + fi + + # Set the prompt location. + if ((lines > 1)); then + case "$kernel_name" in + "OpenBSD") tput cud "$lines" ;; + *) printf "%b" "\e[${lines}B" ;; + esac + fi +} + +old_functions() { + # Deprecated functions. + # Neofetch 2.0 changed the names of a few variables. + # This function adds backwards compatibility for the + # old variable names. + if type printinfo >/dev/null 2>&1; then + print_info() { printinfo ; } + get_wmtheme() { get_wm_theme; wmtheme="$wm_theme"; } + get_termfont() { get_term_font; termfont="$term_font"; } + get_localip() { get_local_ip; localip="$local_ip"; } + get_publicip() { get_public_ip; publicip="$public_ip"; } + get_linebreak() { get_line_break; linebreak="$line_break"; } + fi + + get_birthday() { get_install_date; birthday="$install_date"; } +} + +old_options() { + [[ -n "$osx_buildversion" ]] && \ + err "Config: \$osx_buildversion is deprecated, use \$distro_shorthand instead." + [[ -n "$osx_codename" ]] && \ + err "Config: \$osx_codename is deprecated, use \$distro_shorthand instead." + [[ "$cpu_cores" == "on" ]] && \ + err "Config: cpu_cores='on' is deprecated, use cpu_cores='logical|physical|off' instead." + [[ -n "$image" ]] && \ + { err "Config: \$image is deprecated, use \$image_source instead."; image_source="$image"; } + + # All progress_ variables were changed to bar_. + [[ -n "$progress_char" ]] && \ + err "Config: \$progress_char is deprecated, use \$bar_char_{elapsed,total} instead." + [[ -n "$progress_border" ]] && \ + { err "Config: \$progress_border is deprecated, use \$bar_border instead."; \ + bar_border="$progress_border"; } + [[ -n "$progress_length" ]] && \ + { err "Config: \$progress_length is deprecated, use \$bar_length instead."; \ + bar_length="$progress_length"; } + [[ -n "$progress_color_elapsed" ]] && \ + { err "Config: \$progress_color_elapsed is deprecated, use \$bar_color_elapsed instead."; \ + bar_color_elapsed="$progress_color_elapsed"; } + [[ -n "$progress_color_total" ]] && \ + { err "Config: \$progress_color_total is deprecated, use \$bar_color_total instead."; \ + bar_color_total="$progress_color_total"; } + + # All cpufreq values were changed in 3.0. + [[ "$speed_type" == "current" ]] && \ + err "Config: speed_type='current' is deprecated, use speed_type='scaling_cur_freq' instead." + [[ "$speed_type" == "min" ]] && \ + err "Config: speed_type='min' is deprecated, use speed_type='scaling_min_freq' instead." + [[ "$speed_type" == "max" ]] && \ + err "Config: speed_type='max' is deprecated, use speed_type='scaling_max_freq' instead." + [[ "$speed_type" == "bios" ]] && \ + err "Config: speed_type='bios' is deprecated, use speed_type='bios_limit' instead." + + # Ascii_logo_size was removed in 3.0. + [[ "$ascii_logo_size" ]] && \ + err "Config: ascii_logo_size is deprecated, use ascii_distro='{distro}_small' instead." + + # $start and $end were replaced with ${block_range[@]} in 3.0. + [[ "$start" && "$end" ]] && \ + { err "Config: \$start and \$end are deprecated, use block_range=(0 7) instead."; \ + block_range=("$start" "$end"); } + + # Fahrenheit support was added to CPU so the options were changed. + [[ "$cpu_temp" == "on" ]] && \ + { err "Config: cpu_temp='on' is deprecated, use cpu_temp='C' or 'F' instead."; + cpu_temp="C"; } + + # Birthday was renamed to Install Date in 3.0 + [[ -n "$birthday_time" ]] && \ + { err "Config: \$birthday_time is deprecated, use \3install_time instead."; \ + install_time="$birthday_time"; } + + # Scrot dir was removed in 3.1.0. + [[ -n "$scrot_dir" ]] && scrot_dir= + + # cpu_shorthand was deprecated in 3.3.0 + [[ -n "$cpu_shorthand" ]] && \ + { err "Config: \$cpu_shorthand is deprecated, use \$cpu_brand, \$cpu_cores, and + \$cpu_speed instead."; } +} + +cache_uname() { + # Cache the output of uname so we don't + # have to spawn it multiple times. + IFS=" " read -ra uname <<< "$(uname -sr)" + + kernel_name="${uname[0]}" + kernel_version="${uname[1]}" +} + +convert_time() { + # Convert ls timestamp to 'Tue 06 Dec 2016 4:58 PM' format. + year="$1" + day="${3#0}" + + # Split time into hours/minutes. + hour="${4/:*}" + min="${4/${hour}}" + + # Get month. (Month code is used for day of week) + # Due to different versions of 'ls', the month can be 1, 01 or Jan. + case "$2" in + 1 | 01 | "Jan") month="Jan"; month_code=0 ;; + 2 | 02 | "Feb") month="Feb"; month_code=3 ;; + 3 | 03 | "Mar") month="Mar"; month_code=3 ;; + 4 | 04 | "Apr") month="Apr"; month_code=6 ;; + 5 | 05 | "May") month="May"; month_code=1 ;; + 6 | 06 | "Jun") month="Jun"; month_code=4 ;; + 7 | 07 | "Jul") month="Jul"; month_code=6 ;; + 8 | 08 | "Aug") month="Aug"; month_code=2 ;; + 9 | 09 | "Sep") month="Sep"; month_code=5 ;; + 10 | "Oct") month="Oct"; month_code=0 ;; + 11 | "Nov") month="Nov"; month_code=3 ;; + 12 | "Dec") month="Dec"; month_code=5 ;; + esac + + # Get leap year. + # Source: http://stackoverflow.com/questions/725098/leap-year-calculation + [[ "$((year % 4))" == 0 && "$((year % 100))" != 0 || "$((year % 400))" == 0 ]] && \ + [[ "$month" =~ (Jan|Feb) ]] && \ + leap_code=1 + + # Calculate day of week. + # Source: http://blog.artofmemory.com/how-to-calculate-the-day-of-the-week-4203.html + year_code="$((${year/??} + (${year/??} / 4) % 7))" + week_day="$(((year_code + month_code + 6 + day - leap_code) % 7))" + + case "$week_day" in + 0) week_day="Sun" ;; + 1) week_day="Mon" ;; + 2) week_day="Tue" ;; + 3) week_day="Wed" ;; + 4) week_day="Thu" ;; + 5) week_day="Fri" ;; + 6) week_day="Sat" ;; + esac + + # Convert 24 hour time to 12 hour time + AM/PM. + case "$install_time_format" in + "12h") + case "$hour" in + [0-9] | 0[0-9] | 1[0-1]) time="${hour/00/12}${min} AM" ;; + *) time="$((hour - 12))${min} PM" ;; + esac + ;; + *) time="$4" ;; + esac + + # Toggle showing the time. + [[ "$install_time" == "off" ]] && unset time + + # Print the install date. + printf "%s" "$week_day $day $month $year $time" +} + +get_ppid() { + # Get parent process ID of PID. + case "$os" in + "Windows") + ppid="$(ps -p "${1:-$PPID}" | awk '{printf $2}')" + ppid="${ppid/'PPID'}" + ;; + + "Linux") + ppid="$(grep -i -F "PPid:" "/proc/${1:-$PPID}/status")" + ppid="$(trim "${ppid/PPid:}")" + ;; + + *) + ppid="$(ps -p "${1:-$PPID}" -o ppid=)" + ;; + esac + + printf "%s" "$ppid" +} + +get_process_name() { + # Get PID name. + case "$os" in + "Windows") + name="$(ps -p "${1:-$PPID}" | awk '{printf $8}')" + name="${name/'COMMAND'}" + name="${name/*\/}" + ;; + + "Linux") + name="$(< "/proc/${1:-$PPID}/comm")" + ;; + + *) + name="$(ps -p "${1:-$PPID}" -o comm=)" + ;; + esac + + printf "%s" "$name" +} + +decode_url() { + decode="${1//+/ }" + printf "%b" "${decode//%/\\x}" +} + +# FINISH UP + +usage() { printf "%s" "\ +Usage: neofetch --option \"value\" --option \"value\" + +Neofetch is a CLI system information tool written in BASH. Neofetch +displays information about your system next to an image, your OS logo, +or any ASCII file of your choice. + +NOTE: Every launch flag has a config option. + +Options: + +INFO: + --disable infoname Allows you to disable an info line from appearing + in the output. + + NOTE: You can supply multiple args. eg. 'neofetch --disable cpu gpu' + + --os_arch on/off Hide/Show OS architecture. + --speed_type type Change the type of cpu speed to display. + Possible values: current, min, max, bios, + scaling_current, scaling_min, scaling_max + + NOTE: This only supports Linux with cpufreq. + + --speed_shorthand on/off Whether or not to show decimals in CPU speed. + + NOTE: This flag is not supported in systems with CPU speed less than + 1 GHz. + + --cpu_brand on/off Enable/Disable CPU brand in output. + --cpu_cores type Whether or not to display the number of CPU cores + Possible values: logical, physical, off + + NOTE: 'physical' doesn't work on BSD. + + --cpu_speed on/off Hide/Show cpu speed. + --cpu_temp C/F/off Hide/Show cpu temperature. + + NOTE: This only works on Linux and BSD. + + NOTE: For FreeBSD and NetBSD-based systems, you need to enable + coretemp kernel module. This only supports newer Intel processors. + + --distro_shorthand on/off Shorten the output of distro (tiny, on, off) + + NOTE: This option won't work in Windows (Cygwin) + + --kernel_shorthand on/off Shorten the output of kernel + + NOTE: This option won't work in BSDs (except PacBSD and PC-BSD) + + --uptime_shorthand on/off Shorten the output of uptime (tiny, on, off) + --refresh_rate on/off Whether to display the refresh rate of each monitor + Unsupported on Windows + --gpu_brand on/off Enable/Disable GPU brand in output. (AMD/NVIDIA/Intel) + --gpu_type type Which GPU to display. (all, dedicated, integrated) + + NOTE: This only supports Linux. + + --gtk_shorthand on/off Shorten output of gtk theme/icons + --gtk2 on/off Enable/Disable gtk2 theme/font/icons output + --gtk3 on/off Enable/Disable gtk3 theme/font/icons output + --shell_path on/off Enable/Disable showing \$SHELL path + --shell_version on/off Enable/Disable showing \$SHELL version + --disk_show value Which disks to display. + Possible values: '/', '/dev/sdXX', '/path/to/mount point' + + NOTE: Multiple values can be given. (--disk_show '/' '/dev/sdc1') + + --disk_subtitle type What information to append to the Disk subtitle. + Takes: name, mount, dir + + 'name' shows the disk's name (sda1, sda2, etc) + + 'mount' shows the disk's mount point (/, /mnt/Local Disk, etc) + + 'dir' shows the basename of the disks's path. (/, Local Disk, etc) + + --ip_host url URL to query for public IP + --song_shorthand on/off Print the Artist/Title on separate lines + --music_player player-name Manually specify a player to use. + Available values are listed in the config file + --install_time on/off Enable/Disable showing the time in Install Date output. + --install_time_format 12h/24h + Set time format in Install Date to be 12 hour or 24 hour. + +TEXT FORMATTING: + --colors x x x x x x Changes the text colors in this order: + title, @, underline, subtitle, colon, info + --underline on/off Enable/Disable the underline. + --underline_char char Character to use when underlining title + --bold on/off Enable/Disable bold text + +COLOR BLOCKS: + --color_blocks on/off Enable/Disable the color blocks + --block_width num Width of color blocks in spaces + --block_height num Height of color blocks in lines + --block_range num num Range of colors to print as blocks + +BARS: + --bar_char 'elapsed char' 'total char' + Characters to use when drawing bars. + --bar_border on/off Whether or not to surround the bar with '[]' + --bar_length num Length in spaces to make the bars. + --bar_colors num num Colors to make the bar. + Set in this order: elapsed, total + --cpu_display mode Bar mode. + Possible values: bar, infobar, barinfo, off + --memory_display mode Bar mode. + Possible values: bar, infobar, barinfo, off + --battery_display mode Bar mode. + Possible values: bar, infobar, barinfo, off + --disk_display mode Bar mode. + Possible values: bar, infobar, barinfo, off + +IMAGE BACKEND: + --backend backend Which image backend to use. + Possible values: 'ascii', 'caca', 'catimg', 'jp2a', 'iterm2', 'off', + 'sixel', 'tycat', 'w3m' + --source source Which image or ascii file to use. + Possible values: 'auto', 'ascii', 'wallpaper', '/path/to/img', + '/path/to/ascii', '/path/to/dir/' + --ascii source Shortcut to use 'ascii' backend. + --caca source Shortcut to use 'caca' backend. + --catimg source Shortcut to use 'catimg' backend. + --iterm2 source Shortcut to use 'iterm2' backend. + --jp2a source Shortcut to use 'jp2a' backend. + --kitty source Shortcut to use 'kitty' backend. + --pixterm source Shortcut to use 'pixterm' backend. + --sixel source Shortcut to use 'sixel' backend. + --termpix source Shortcut to use 'termpix' backend. + --tycat source Shortcut to use 'tycat' backend. + --w3m source Shortcut to use 'w3m' backend. + --off Shortcut to use 'off' backend. + + NOTE: 'source; can be any of the following: 'auto', 'ascii', 'wallpaper', '/path/to/img', + '/path/to/ascii', '/path/to/dir/' + +ASCII: + --ascii_colors x x x x x x Colors to print the ascii art + --ascii_distro distro Which Distro's ascii art to print + + NOTE: Arch and Ubuntu have 'old' logo variants. + + NOTE: Use 'arch_old' or 'ubuntu_old' to use the old logos. + + NOTE: Ubuntu has flavor variants. + + NOTE: Change this to 'Lubuntu', 'Xubuntu', 'Ubuntu-GNOME', + 'Ubuntu-Studio' or 'Ubuntu-Budgie' to use the flavors. + + NOTE: Alpine, Arch, CRUX, Debian, Gentoo, FreeBSD, Mac, NixOS, + OpenBSD, and Void have a smaller logo variant. + + NOTE: Use '{distro name}_small' to use the small variants. + + --ascii_bold on/off Whether or not to bold the ascii logo. + -L, --logo Hide the info text and only show the ascii logo. + + Possible values: bar, infobar, barinfo, off + +IMAGE: + --loop Redraw the image constantly until Ctrl+C is used. This fixes issues + in some terminals emulators when using image mode. + --size 00px | --size 00% How to size the image. + Possible values: auto, 00px, 00%, none + --crop_mode mode Which crop mode to use + Takes the values: normal, fit, fill + --crop_offset value Change the crop offset for normal mode. + Possible values: northwest, north, northeast, + west, center, east, southwest, south, southeast + + --xoffset px How close the image will be to the left edge of the + window. This only works with w3m. + --yoffset px How close the image will be to the top edge of the + window. This only works with w3m. + --bg_color color Background color to display behind transparent image. + This only works with w3m. + --gap num Gap between image and text. + + NOTE: --gap can take a negative value which will move the text + closer to the left side. + + --clean Delete cached files and thumbnails. + +SCREENSHOT: + -s, --scrot /path/to/img Take a screenshot, if path is left empty the screen- + shot function will use \$scrot_dir and \$scrot_name. + -su, --upload /path/to/img Same as --scrot but uploads the scrot to a website. + --image_host imgur/teknik Website to upload scrots to. + --scrot_cmd cmd Screenshot program to launch + +OTHER: + --config /path/to/config Specify a path to a custom config file + --config none Launch the script without a config file + --stdout Turn off all colors and disables any ASCII/image backend. + --help Print this text and exit + --version Show neofetch version + -v Display error messages. + -vv Display a verbose log for error reporting. + +DEVELOPER: + --gen-man Generate a manpage for Neofetch in your PWD. (Requires GNU help2man) + + +Report bugs to https://github.com/dylanaraps/neofetch/issues + +" +exit 1 +} + +get_args() { + # Check the commandline flags early for '--config'. + [[ "$*" != *--config* ]] && get_user_config + + while [[ "$1" ]]; do + case "$1" in + # Info + "--os_arch") os_arch="$2" ;; + "--cpu_cores") cpu_cores="$2" ;; + "--cpu_speed") cpu_speed="$2" ;; + "--speed_type") speed_type="$2" ;; + "--speed_shorthand") speed_shorthand="$2" ;; + "--distro_shorthand") distro_shorthand="$2" ;; + "--kernel_shorthand") kernel_shorthand="$2" ;; + "--uptime_shorthand") uptime_shorthand="$2" ;; + "--cpu_brand") cpu_brand="$2" ;; + "--gpu_brand") gpu_brand="$2" ;; + "--gpu_type") gpu_type="$2" ;; + "--refresh_rate") refresh_rate="$2" ;; + "--gtk_shorthand") gtk_shorthand="$2" ;; + "--gtk2") gtk2="$2" ;; + "--gtk3") gtk3="$2" ;; + "--shell_path") shell_path="$2" ;; + "--shell_version") shell_version="$2" ;; + "--ip_host") public_ip_host="$2" ;; + "--song_shorthand") song_shorthand="$2" ;; + "--music_player") music_player="$2" ;; + "--install_time") install_time="$2" ;; + "--install_time_format") install_time_format="$2" ;; + "--cpu_temp") + cpu_temp="$2" + [[ "$cpu_temp" == "on" ]] && cpu_temp="C" + ;; + + "--disk_subtitle") disk_subtitle="$2" ;; + "--disk_show") + unset disk_show + for arg in "$@"; do + case "$arg" in + "--disk_show") ;; + "-"*) break ;; + *) disk_show+=("$arg") ;; + esac + done + ;; + + "--disable") + for func in "$@"; do + case "$func" in + "--disable") continue ;; + "-"*) break ;; + *) + ((bash_version >= 4)) && func="${func,,}" + unset -f "get_$func" + ;; + esac + done + ;; + + # Text Colors + "--colors") + unset colors + for arg in "$2" "$3" "$4" "$5" "$6" "$7"; do + case "$arg" in + "-"*) break ;; + *) colors+=("$arg") ;; + esac + done + colors+=(7 7 7 7 7 7) + ;; + + # Text Formatting + "--underline") underline_enabled="$2" ;; + "--underline_char") underline_char="$2" ;; + "--bold") bold="$2" ;; + + # Color Blocks + "--color_blocks") color_blocks="$2" ;; + "--block_range") block_range=("$2" "$3") ;; + "--block_width") block_width="$2" ;; + "--block_height") block_height="$2" ;; + + # Bars + "--bar_char") + bar_char_elapsed="$2" + bar_char_total="$3" + ;; + + "--bar_border") bar_border="$2" ;; + "--bar_length") bar_length="$2" ;; + "--bar_colors") + bar_color_elapsed="$2" + bar_color_total="$3" + ;; + + "--cpu_display") cpu_display="$2" ;; + "--memory_display") memory_display="$2" ;; + "--battery_display") battery_display="$2" ;; + "--disk_display") disk_display="$2" ;; + + # Image backend + "--backend") image_backend="$2" ;; + "--source") image_source="$2" ;; + "--ascii" | "--caca" | "--catimg" | "--jp2a" | "--iterm2" | "--off" | "--pixterm" |\ + "--sixel" | "--termpix" | "--tycat" | "--w3m" | "--kitty") + image_backend="${1/--}" + case "$2" in + "-"* | "") ;; + *) image_source="$2" ;; + esac + ;; + + # Image options + "--loop") image_loop="on" ;; + "--image_size" | "--size") image_size="$2" ;; + "--crop_mode") crop_mode="$2" ;; + "--crop_offset") crop_offset="$2" ;; + "--xoffset") xoffset="$2" ;; + "--yoffset") yoffset="$2" ;; + "--background_color" | "--bg_color") background_color="$2" ;; + "--gap") gap="$2" ;; + "--clean") + [[ -d "$thumbnail_dir" ]] && rm -rf "$thumbnail_dir" + rm -rf "/Library/Caches/neofetch/" + rm -rf "/tmp/neofetch/" + exit + ;; + + "--ascii_colors") + unset ascii_colors + for arg in "$2" "$3" "$4" "$5" "$6" "$7"; do + case "$arg" in + "-"*) break ;; + *) ascii_colors+=("$arg") + esac + done + ascii_colors+=(7 7 7 7 7 7) + ;; + + "--ascii_distro") + image_backend="ascii" + ascii_distro="$2" + case "$2" in "-"* | "") ascii_distro="$distro" ;; esac + ;; + + "--ascii_bold") ascii_bold="$2" ;; + "--logo" | "-L") + image_backend="ascii" + print_info() { info line_break; } + ;; + + # Screenshot + "--scrot" | "-s") + scrot_args "$@" + ;; + "--upload" | "-su") + scrot_upload="on" + scrot_args "$@" + ;; + + "--image_host") image_host="$2" ;; + "--scrot_cmd") scrot_cmd="$2" ;; + + # Other + "--config") + case "$2" in + "none" | "off" | "") ;; + *) + config_file="$(get_full_path "$2")" + get_user_config + ;; + esac + ;; + "--stdout") stdout="on" ;; + "-v") verbose="on" ;; + "-vv") set -x; verbose="on" ;; + "--help") usage ;; + "--version") + printf "%s\\n" "Neofetch $version" + exit 1 + ;; + "--gen-man") + help2man -n "A fast, highly customizable system info script" \ + -N ./neofetch -o neofetch.1 + exit 1 + ;; + + "--travis") + print_info() { + info title + info underline + + info "OS" distro + info "Host" model + info "Kernel" kernel + info "Uptime" uptime + info "Packages" packages + info "Shell" shell + info "Resolution" resolution + info "DE" de + info "WM" wm + info "WM Theme" wm_theme + info "Theme" theme + info "Icons" icons + info "Terminal" term + info "Terminal Font" term_font + info "CPU" cpu + info "GPU" gpu + info "GPU Driver" gpu_driver + info "Memory" memory + + info "CPU Usage" cpu_usage + info "Disk" disk + info "Battery" battery + info "Font" font + info "Song" song + info "Local IP" local_ip + info "Public IP" public_ip + info "Users" users + info "Install Date" install_date + + info line_break + info cols + info line_break + + # Testing. + prin "prin" + prin "prin" "prin" + + # Testing no subtitles. + info uptime + info disk + } + + refresh_rate="on" + shell_version="on" + cpu_display="infobar" + memory_display="infobar" + disk_display="infobar" + cpu_temp="C" + ;; + esac + + shift + done +} + get_distro_colors() { # This function sets the text colors according # to your OS/Distro's logo colors. @@ -7710,914 +8618,6 @@ EOF fi } -set_colors() { - c1="$(color "$1")${ascii_bold}" - c2="$(color "$2")${ascii_bold}" - c3="$(color "$3")${ascii_bold}" - c4="$(color "$4")${ascii_bold}" - c5="$(color "$5")${ascii_bold}" - c6="$(color "$6")${ascii_bold}" - - [[ "$color_text" != "off" ]] && set_text_colors "$@" -} - -set_text_colors() { - if [[ "${colors[0]}" == "distro" ]]; then - title_color="$(color "$1")" - at_color="$reset" - underline_color="$reset" - subtitle_color="$(color "$2")" - colon_color="$reset" - info_color="$reset" - - # If the ascii art uses 8 as a color, make the text the fg. - ((${1:-1} == 8)) && title_color="$reset" - ((${2:-7} == 8)) && subtitle_color="$reset" - - # If the second color is white use the first for the subtitle. - ((${2:-7} == 7)) && subtitle_color="$(color "$1")" - ((${1:-1} == 7)) && title_color="$reset" - else - title_color="$(color "${colors[0]}")" - at_color="$(color "${colors[1]}")" - underline_color="$(color "${colors[2]}")" - subtitle_color="$(color "${colors[3]}")" - colon_color="$(color "${colors[4]}")" - info_color="$(color "${colors[5]}")" - fi - - # Bar colors. - if [[ "$bar_color_elapsed" == "distro" ]]; then - bar_color_elapsed="$(color fg)" - else - bar_color_elapsed="$(color "$bar_color_elapsed")" - fi - - case "$bar_color_total $1" in - "distro "[736]) bar_color_total="$(color "$1")" ;; - "distro "[0-9]) bar_color_total="$(color "$2")" ;; - *) bar_color_total="$(color "$bar_color_total")" ;; - esac -} - -color() { - case "$1" in - [0-6]) printf "%b" "${reset}\e[3${1}m" ;; - 7 | "fg") printf "%b" "\e[37m${reset}" ;; - *) printf "%b" "\e[38;5;${1}m" ;; - esac -} - -# OTHER - -stdout() { - image_backend="off" - unset subtitle_color - unset colon_color - unset info_color - unset underline_color - unset bold - unset title_color - unset at_color - unset text_padding - unset zws - unset reset - unset color_blocks - unset get_line_break -} - -err() { - err+="$(color 1)[!]\e[0m $1\n" -} - -get_full_path() { - # This function finds the absolute path from a relative one. - # For example "Pictures/Wallpapers" --> "/home/dylan/Pictures/Wallpapers" - - # If the file exists in the current directory, stop here. - [[ -f "${PWD}/${1/*\/}" ]] && { printf "%s\n" "${PWD}/${1/*\/}"; return; } - - if ! cd "${1%/*}"; then - err "Error: Directory '${1%/*}' doesn't exist or is inaccessible" - err " Check that the directory exists or try another directory." - exit 1 - fi - - local full_dir="${1##*/}" - - # Iterate down a (possible) chain of symlinks. - while [[ -L "$full_dir" ]]; do - full_dir="$(readlink "$full_dir")" - cd "${full_dir%/*}" || exit - full_dir="${full_dir##*/}" - done - - # Final directory. - full_dir="$(pwd -P)/${1/*\/}" - - [[ -e "$full_dir" ]] && printf "%s\n" "$full_dir" -} - -get_user_config() { - # Check $config_file. - if [[ -f "$config_file" ]]; then - source "$config_file" - err "Config: Sourced user config. (${config_file})" - old_options - return - fi - mkdir -p "${XDG_CONFIG_HOME}/neofetch/" - - # Check ${XDG_CONFIG_HOME}/neofetch and create the - # dir/files if they don't exist. - if [[ -f "${XDG_CONFIG_HOME}/neofetch/config" ]]; then - config_file="${XDG_CONFIG_HOME}/neofetch/config" - - elif [[ -f "${XDG_CONFIG_HOME}/neofetch/config.conf" ]]; then - config_file="${XDG_CONFIG_HOME}/neofetch/config.conf" - - else - config_file="${XDG_CONFIG_HOME}/neofetch/config.conf" - - # The config file doesn't exist, create it. - printf "%s\n" "$config" > "$config_file" - fi - - source "$config_file" - err "Config: Sourced user config. (${config_file})" - old_options -} - -bar() { - # Get the values. - elapsed="$(($1 * bar_length / $2))" - - # Create the bar with spaces. - printf -v prog "%${elapsed}s" - printf -v total "%$((bar_length - elapsed))s" - - # Set the colors and swap the spaces for $bar_char_. - bar+="${bar_color_elapsed}${prog// /${bar_char_elapsed}}" - bar+="${bar_color_total}${total// /${bar_char_total}}" - - # Borders. - [[ "$bar_border" == "on" ]] && \ - bar="$(color fg)[${bar}$(color fg)]" - - printf "%b" "${bar}${info_color}" -} - -cache() { - if [[ "$2" ]]; then - mkdir -p "${cache_dir}/neofetch" - printf "%s" "${1/*-}=\"$2\"" > "${cache_dir}/neofetch/${1/*-}" - fi -} - -get_cache_dir() { - case "$os" in - "Mac OS X") cache_dir="/Library/Caches" ;; - *) cache_dir="/tmp" ;; - esac -} - -kde_config_dir() { - # If the user is using KDE get the KDE - # configuration directory. - if [[ "$kde_config_dir" ]]; then - return - - elif type -p kf5-config >/dev/null 2>&1; then - kde_config_dir="$(kf5-config --path config)" - - elif type -p kde4-config >/dev/null 2>&1; then - kde_config_dir="$(kde4-config --path config)" - - elif type -p kde-config >/dev/null 2>&1; then - kde_config_dir="$(kde-config --path config)" - - elif [[ -d "${HOME}/.kde4" ]]; then - kde_config_dir="${HOME}/.kde4/share/config" - - elif [[ -d "${HOME}/.kde3" ]]; then - kde_config_dir="${HOME}/.kde3/share/config" - fi - - kde_config_dir="${kde_config_dir/$'/:'*}" -} - -get_term_padding() { - # Terminal info. - # - # Parse terminal config files to get - # info about padding. Due to how w3m-img - # works padding around the terminal throws - # off the cursor placement calculation in - # specific terminals. - # - # Note: This issue only seems to affect - # URxvt. - ((term_run != 1)) && get_term - - case "$term" in - "URxvt"*) - border="$(xrdb -query | awk -F ':' '/^(URxvt|\*).internalBorder/ {printf $2; exit}')" - ;; - esac -} - -dynamic_prompt() { - case "$image_backend" in - "ascii") printf "\n" ;; - "off") return ;; - *) - get_term_padding - lines="$(((border + height + yoffset) / font_height))" - image_prompt="on" - ;; - esac - - # If the info is higher than the ascii/image place the prompt - # based on the info height instead of the ascii/image height. - if ((lines < info_height)); then - [[ "$image_prompt" ]] && printf "\n" - return - else - [[ "$image_prompt" ]] && printf "%b\n" "$line_breaks" - lines="$((lines - info_height + 1))" - fi - - # Set the prompt location. - if ((lines > 1)); then - case "$kernel_name" in - "OpenBSD") tput cud "$lines" ;; - *) printf "%b" "\e[${lines}B" ;; - esac - fi -} - -old_functions() { - # Deprecated functions. - # Neofetch 2.0 changed the names of a few variables. - # This function adds backwards compatibility for the - # old variable names. - if type printinfo >/dev/null 2>&1; then - print_info() { printinfo ; } - get_wmtheme() { get_wm_theme; wmtheme="$wm_theme"; } - get_termfont() { get_term_font; termfont="$term_font"; } - get_localip() { get_local_ip; localip="$local_ip"; } - get_publicip() { get_public_ip; publicip="$public_ip"; } - get_linebreak() { get_line_break; linebreak="$line_break"; } - fi - - get_birthday() { get_install_date; birthday="$install_date"; } -} - -old_options() { - [[ -n "$osx_buildversion" ]] && \ - err "Config: \$osx_buildversion is deprecated, use \$distro_shorthand instead." - [[ -n "$osx_codename" ]] && \ - err "Config: \$osx_codename is deprecated, use \$distro_shorthand instead." - [[ "$cpu_cores" == "on" ]] && \ - err "Config: cpu_cores='on' is deprecated, use cpu_cores='logical|physical|off' instead." - [[ -n "$image" ]] && \ - { err "Config: \$image is deprecated, use \$image_source instead."; image_source="$image"; } - - # All progress_ variables were changed to bar_. - [[ -n "$progress_char" ]] && \ - err "Config: \$progress_char is deprecated, use \$bar_char_{elapsed,total} instead." - [[ -n "$progress_border" ]] && \ - { err "Config: \$progress_border is deprecated, use \$bar_border instead."; \ - bar_border="$progress_border"; } - [[ -n "$progress_length" ]] && \ - { err "Config: \$progress_length is deprecated, use \$bar_length instead."; \ - bar_length="$progress_length"; } - [[ -n "$progress_color_elapsed" ]] && \ - { err "Config: \$progress_color_elapsed is deprecated, use \$bar_color_elapsed instead."; \ - bar_color_elapsed="$progress_color_elapsed"; } - [[ -n "$progress_color_total" ]] && \ - { err "Config: \$progress_color_total is deprecated, use \$bar_color_total instead."; \ - bar_color_total="$progress_color_total"; } - - # All cpufreq values were changed in 3.0. - [[ "$speed_type" == "current" ]] && \ - err "Config: speed_type='current' is deprecated, use speed_type='scaling_cur_freq' instead." - [[ "$speed_type" == "min" ]] && \ - err "Config: speed_type='min' is deprecated, use speed_type='scaling_min_freq' instead." - [[ "$speed_type" == "max" ]] && \ - err "Config: speed_type='max' is deprecated, use speed_type='scaling_max_freq' instead." - [[ "$speed_type" == "bios" ]] && \ - err "Config: speed_type='bios' is deprecated, use speed_type='bios_limit' instead." - - # Ascii_logo_size was removed in 3.0. - [[ "$ascii_logo_size" ]] && \ - err "Config: ascii_logo_size is deprecated, use ascii_distro='{distro}_small' instead." - - # $start and $end were replaced with ${block_range[@]} in 3.0. - [[ "$start" && "$end" ]] && \ - { err "Config: \$start and \$end are deprecated, use block_range=(0 7) instead."; \ - block_range=("$start" "$end"); } - - # Fahrenheit support was added to CPU so the options were changed. - [[ "$cpu_temp" == "on" ]] && \ - { err "Config: cpu_temp='on' is deprecated, use cpu_temp='C' or 'F' instead."; - cpu_temp="C"; } - - # Birthday was renamed to Install Date in 3.0 - [[ -n "$birthday_time" ]] && \ - { err "Config: \$birthday_time is deprecated, use \3install_time instead."; \ - install_time="$birthday_time"; } - - # Scrot dir was removed in 3.1.0. - [[ -n "$scrot_dir" ]] && scrot_dir= - - # cpu_shorthand was deprecated in 3.3.0 - [[ -n "$cpu_shorthand" ]] && \ - { err "Config: \$cpu_shorthand is deprecated, use \$cpu_brand, \$cpu_cores, and - \$cpu_speed instead."; } -} - -cache_uname() { - # Cache the output of uname so we don't - # have to spawn it multiple times. - IFS=" " read -ra uname <<< "$(uname -sr)" - - kernel_name="${uname[0]}" - kernel_version="${uname[1]}" -} - -convert_time() { - # Convert ls timestamp to 'Tue 06 Dec 2016 4:58 PM' format. - year="$1" - day="${3#0}" - - # Split time into hours/minutes. - hour="${4/:*}" - min="${4/${hour}}" - - # Get month. (Month code is used for day of week) - # Due to different versions of 'ls', the month can be 1, 01 or Jan. - case "$2" in - 1 | 01 | "Jan") month="Jan"; month_code=0 ;; - 2 | 02 | "Feb") month="Feb"; month_code=3 ;; - 3 | 03 | "Mar") month="Mar"; month_code=3 ;; - 4 | 04 | "Apr") month="Apr"; month_code=6 ;; - 5 | 05 | "May") month="May"; month_code=1 ;; - 6 | 06 | "Jun") month="Jun"; month_code=4 ;; - 7 | 07 | "Jul") month="Jul"; month_code=6 ;; - 8 | 08 | "Aug") month="Aug"; month_code=2 ;; - 9 | 09 | "Sep") month="Sep"; month_code=5 ;; - 10 | "Oct") month="Oct"; month_code=0 ;; - 11 | "Nov") month="Nov"; month_code=3 ;; - 12 | "Dec") month="Dec"; month_code=5 ;; - esac - - # Get leap year. - # Source: http://stackoverflow.com/questions/725098/leap-year-calculation - [[ "$((year % 4))" == 0 && "$((year % 100))" != 0 || "$((year % 400))" == 0 ]] && \ - [[ "$month" =~ (Jan|Feb) ]] && \ - leap_code=1 - - # Calculate day of week. - # Source: http://blog.artofmemory.com/how-to-calculate-the-day-of-the-week-4203.html - year_code="$((${year/??} + (${year/??} / 4) % 7))" - week_day="$(((year_code + month_code + 6 + day - leap_code) % 7))" - - case "$week_day" in - 0) week_day="Sun" ;; - 1) week_day="Mon" ;; - 2) week_day="Tue" ;; - 3) week_day="Wed" ;; - 4) week_day="Thu" ;; - 5) week_day="Fri" ;; - 6) week_day="Sat" ;; - esac - - # Convert 24 hour time to 12 hour time + AM/PM. - case "$install_time_format" in - "12h") - case "$hour" in - [0-9] | 0[0-9] | 1[0-1]) time="${hour/00/12}${min} AM" ;; - *) time="$((hour - 12))${min} PM" ;; - esac - ;; - *) time="$4" ;; - esac - - # Toggle showing the time. - [[ "$install_time" == "off" ]] && unset time - - # Print the install date. - printf "%s" "$week_day $day $month $year $time" -} - -get_ppid() { - # Get parent process ID of PID. - case "$os" in - "Windows") - ppid="$(ps -p "${1:-$PPID}" | awk '{printf $2}')" - ppid="${ppid/'PPID'}" - ;; - - "Linux") - ppid="$(grep -i -F "PPid:" "/proc/${1:-$PPID}/status")" - ppid="$(trim "${ppid/PPid:}")" - ;; - - *) - ppid="$(ps -p "${1:-$PPID}" -o ppid=)" - ;; - esac - - printf "%s" "$ppid" -} - -get_process_name() { - # Get PID name. - case "$os" in - "Windows") - name="$(ps -p "${1:-$PPID}" | awk '{printf $8}')" - name="${name/'COMMAND'}" - name="${name/*\/}" - ;; - - "Linux") - name="$(< "/proc/${1:-$PPID}/comm")" - ;; - - *) - name="$(ps -p "${1:-$PPID}" -o comm=)" - ;; - esac - - printf "%s" "$name" -} - -decode_url() { - decode="${1//+/ }" - printf "%b" "${decode//%/\\x}" -} - -# FINISH UP - -usage() { printf "%s" "\ -Usage: neofetch --option \"value\" --option \"value\" - -Neofetch is a CLI system information tool written in BASH. Neofetch -displays information about your system next to an image, your OS logo, -or any ASCII file of your choice. - -NOTE: Every launch flag has a config option. - -Options: - -INFO: - --disable infoname Allows you to disable an info line from appearing - in the output. - - NOTE: You can supply multiple args. eg. 'neofetch --disable cpu gpu' - - --os_arch on/off Hide/Show OS architecture. - --speed_type type Change the type of cpu speed to display. - Possible values: current, min, max, bios, - scaling_current, scaling_min, scaling_max - - NOTE: This only supports Linux with cpufreq. - - --speed_shorthand on/off Whether or not to show decimals in CPU speed. - - NOTE: This flag is not supported in systems with CPU speed less than - 1 GHz. - - --cpu_brand on/off Enable/Disable CPU brand in output. - --cpu_cores type Whether or not to display the number of CPU cores - Possible values: logical, physical, off - - NOTE: 'physical' doesn't work on BSD. - - --cpu_speed on/off Hide/Show cpu speed. - --cpu_temp C/F/off Hide/Show cpu temperature. - - NOTE: This only works on Linux and BSD. - - NOTE: For FreeBSD and NetBSD-based systems, you need to enable - coretemp kernel module. This only supports newer Intel processors. - - --distro_shorthand on/off Shorten the output of distro (tiny, on, off) - - NOTE: This option won't work in Windows (Cygwin) - - --kernel_shorthand on/off Shorten the output of kernel - - NOTE: This option won't work in BSDs (except PacBSD and PC-BSD) - - --uptime_shorthand on/off Shorten the output of uptime (tiny, on, off) - --refresh_rate on/off Whether to display the refresh rate of each monitor - Unsupported on Windows - --gpu_brand on/off Enable/Disable GPU brand in output. (AMD/NVIDIA/Intel) - --gpu_type type Which GPU to display. (all, dedicated, integrated) - - NOTE: This only supports Linux. - - --gtk_shorthand on/off Shorten output of gtk theme/icons - --gtk2 on/off Enable/Disable gtk2 theme/font/icons output - --gtk3 on/off Enable/Disable gtk3 theme/font/icons output - --shell_path on/off Enable/Disable showing \$SHELL path - --shell_version on/off Enable/Disable showing \$SHELL version - --disk_show value Which disks to display. - Possible values: '/', '/dev/sdXX', '/path/to/mount point' - - NOTE: Multiple values can be given. (--disk_show '/' '/dev/sdc1') - - --disk_subtitle type What information to append to the Disk subtitle. - Takes: name, mount, dir - - 'name' shows the disk's name (sda1, sda2, etc) - - 'mount' shows the disk's mount point (/, /mnt/Local Disk, etc) - - 'dir' shows the basename of the disks's path. (/, Local Disk, etc) - - --ip_host url URL to query for public IP - --song_shorthand on/off Print the Artist/Title on separate lines - --music_player player-name Manually specify a player to use. - Available values are listed in the config file - --install_time on/off Enable/Disable showing the time in Install Date output. - --install_time_format 12h/24h - Set time format in Install Date to be 12 hour or 24 hour. - -TEXT FORMATTING: - --colors x x x x x x Changes the text colors in this order: - title, @, underline, subtitle, colon, info - --underline on/off Enable/Disable the underline. - --underline_char char Character to use when underlining title - --bold on/off Enable/Disable bold text - -COLOR BLOCKS: - --color_blocks on/off Enable/Disable the color blocks - --block_width num Width of color blocks in spaces - --block_height num Height of color blocks in lines - --block_range num num Range of colors to print as blocks - -BARS: - --bar_char 'elapsed char' 'total char' - Characters to use when drawing bars. - --bar_border on/off Whether or not to surround the bar with '[]' - --bar_length num Length in spaces to make the bars. - --bar_colors num num Colors to make the bar. - Set in this order: elapsed, total - --cpu_display mode Bar mode. - Possible values: bar, infobar, barinfo, off - --memory_display mode Bar mode. - Possible values: bar, infobar, barinfo, off - --battery_display mode Bar mode. - Possible values: bar, infobar, barinfo, off - --disk_display mode Bar mode. - Possible values: bar, infobar, barinfo, off - -IMAGE BACKEND: - --backend backend Which image backend to use. - Possible values: 'ascii', 'caca', 'catimg', 'jp2a', 'iterm2', 'off', - 'sixel', 'tycat', 'w3m' - --source source Which image or ascii file to use. - Possible values: 'auto', 'ascii', 'wallpaper', '/path/to/img', - '/path/to/ascii', '/path/to/dir/' - --ascii source Shortcut to use 'ascii' backend. - --caca source Shortcut to use 'caca' backend. - --catimg source Shortcut to use 'catimg' backend. - --iterm2 source Shortcut to use 'iterm2' backend. - --jp2a source Shortcut to use 'jp2a' backend. - --kitty source Shortcut to use 'kitty' backend. - --pixterm source Shortcut to use 'pixterm' backend. - --sixel source Shortcut to use 'sixel' backend. - --termpix source Shortcut to use 'termpix' backend. - --tycat source Shortcut to use 'tycat' backend. - --w3m source Shortcut to use 'w3m' backend. - --off Shortcut to use 'off' backend. - - NOTE: 'source; can be any of the following: 'auto', 'ascii', 'wallpaper', '/path/to/img', - '/path/to/ascii', '/path/to/dir/' - -ASCII: - --ascii_colors x x x x x x Colors to print the ascii art - --ascii_distro distro Which Distro's ascii art to print - - NOTE: Arch and Ubuntu have 'old' logo variants. - - NOTE: Use 'arch_old' or 'ubuntu_old' to use the old logos. - - NOTE: Ubuntu has flavor variants. - - NOTE: Change this to 'Lubuntu', 'Xubuntu', 'Ubuntu-GNOME', - 'Ubuntu-Studio' or 'Ubuntu-Budgie' to use the flavors. - - NOTE: Alpine, Arch, CRUX, Debian, Gentoo, FreeBSD, Mac, NixOS, - OpenBSD, and Void have a smaller logo variant. - - NOTE: Use '{distro name}_small' to use the small variants. - - --ascii_bold on/off Whether or not to bold the ascii logo. - -L, --logo Hide the info text and only show the ascii logo. - - Possible values: bar, infobar, barinfo, off - -IMAGE: - --loop Redraw the image constantly until Ctrl+C is used. This fixes issues - in some terminals emulators when using image mode. - --size 00px | --size 00% How to size the image. - Possible values: auto, 00px, 00%, none - --crop_mode mode Which crop mode to use - Takes the values: normal, fit, fill - --crop_offset value Change the crop offset for normal mode. - Possible values: northwest, north, northeast, - west, center, east, southwest, south, southeast - - --xoffset px How close the image will be to the left edge of the - window. This only works with w3m. - --yoffset px How close the image will be to the top edge of the - window. This only works with w3m. - --bg_color color Background color to display behind transparent image. - This only works with w3m. - --gap num Gap between image and text. - - NOTE: --gap can take a negative value which will move the text - closer to the left side. - - --clean Delete cached files and thumbnails. - -SCREENSHOT: - -s, --scrot /path/to/img Take a screenshot, if path is left empty the screen- - shot function will use \$scrot_dir and \$scrot_name. - -su, --upload /path/to/img Same as --scrot but uploads the scrot to a website. - --image_host imgur/teknik Website to upload scrots to. - --scrot_cmd cmd Screenshot program to launch - -OTHER: - --config /path/to/config Specify a path to a custom config file - --config none Launch the script without a config file - --stdout Turn off all colors and disables any ASCII/image backend. - --help Print this text and exit - --version Show neofetch version - -v Display error messages. - -vv Display a verbose log for error reporting. - -DEVELOPER: - --gen-man Generate a manpage for Neofetch in your PWD. (Requires GNU help2man) - - -Report bugs to https://github.com/dylanaraps/neofetch/issues - -" -exit 1 -} - -get_args() { - # Check the commandline flags early for '--config'. - [[ "$*" != *--config* ]] && get_user_config - - while [[ "$1" ]]; do - case "$1" in - # Info - "--os_arch") os_arch="$2" ;; - "--cpu_cores") cpu_cores="$2" ;; - "--cpu_speed") cpu_speed="$2" ;; - "--speed_type") speed_type="$2" ;; - "--speed_shorthand") speed_shorthand="$2" ;; - "--distro_shorthand") distro_shorthand="$2" ;; - "--kernel_shorthand") kernel_shorthand="$2" ;; - "--uptime_shorthand") uptime_shorthand="$2" ;; - "--cpu_brand") cpu_brand="$2" ;; - "--gpu_brand") gpu_brand="$2" ;; - "--gpu_type") gpu_type="$2" ;; - "--refresh_rate") refresh_rate="$2" ;; - "--gtk_shorthand") gtk_shorthand="$2" ;; - "--gtk2") gtk2="$2" ;; - "--gtk3") gtk3="$2" ;; - "--shell_path") shell_path="$2" ;; - "--shell_version") shell_version="$2" ;; - "--ip_host") public_ip_host="$2" ;; - "--song_shorthand") song_shorthand="$2" ;; - "--music_player") music_player="$2" ;; - "--install_time") install_time="$2" ;; - "--install_time_format") install_time_format="$2" ;; - "--cpu_temp") - cpu_temp="$2" - [[ "$cpu_temp" == "on" ]] && cpu_temp="C" - ;; - - "--disk_subtitle") disk_subtitle="$2" ;; - "--disk_show") - unset disk_show - for arg in "$@"; do - case "$arg" in - "--disk_show") ;; - "-"*) break ;; - *) disk_show+=("$arg") ;; - esac - done - ;; - - "--disable") - for func in "$@"; do - case "$func" in - "--disable") continue ;; - "-"*) break ;; - *) - ((bash_version >= 4)) && func="${func,,}" - unset -f "get_$func" - ;; - esac - done - ;; - - # Text Colors - "--colors") - unset colors - for arg in "$2" "$3" "$4" "$5" "$6" "$7"; do - case "$arg" in - "-"*) break ;; - *) colors+=("$arg") ;; - esac - done - colors+=(7 7 7 7 7 7) - ;; - - # Text Formatting - "--underline") underline_enabled="$2" ;; - "--underline_char") underline_char="$2" ;; - "--bold") bold="$2" ;; - - # Color Blocks - "--color_blocks") color_blocks="$2" ;; - "--block_range") block_range=("$2" "$3") ;; - "--block_width") block_width="$2" ;; - "--block_height") block_height="$2" ;; - - # Bars - "--bar_char") - bar_char_elapsed="$2" - bar_char_total="$3" - ;; - - "--bar_border") bar_border="$2" ;; - "--bar_length") bar_length="$2" ;; - "--bar_colors") - bar_color_elapsed="$2" - bar_color_total="$3" - ;; - - "--cpu_display") cpu_display="$2" ;; - "--memory_display") memory_display="$2" ;; - "--battery_display") battery_display="$2" ;; - "--disk_display") disk_display="$2" ;; - - # Image backend - "--backend") image_backend="$2" ;; - "--source") image_source="$2" ;; - "--ascii" | "--caca" | "--catimg" | "--jp2a" | "--iterm2" | "--off" | "--pixterm" |\ - "--sixel" | "--termpix" | "--tycat" | "--w3m" | "--kitty") - image_backend="${1/--}" - case "$2" in - "-"* | "") ;; - *) image_source="$2" ;; - esac - ;; - - # Image options - "--loop") image_loop="on" ;; - "--image_size" | "--size") image_size="$2" ;; - "--crop_mode") crop_mode="$2" ;; - "--crop_offset") crop_offset="$2" ;; - "--xoffset") xoffset="$2" ;; - "--yoffset") yoffset="$2" ;; - "--background_color" | "--bg_color") background_color="$2" ;; - "--gap") gap="$2" ;; - "--clean") - [[ -d "$thumbnail_dir" ]] && rm -rf "$thumbnail_dir" - rm -rf "/Library/Caches/neofetch/" - rm -rf "/tmp/neofetch/" - exit - ;; - - "--ascii_colors") - unset ascii_colors - for arg in "$2" "$3" "$4" "$5" "$6" "$7"; do - case "$arg" in - "-"*) break ;; - *) ascii_colors+=("$arg") - esac - done - ascii_colors+=(7 7 7 7 7 7) - ;; - - "--ascii_distro") - image_backend="ascii" - ascii_distro="$2" - case "$2" in "-"* | "") ascii_distro="$distro" ;; esac - ;; - - "--ascii_bold") ascii_bold="$2" ;; - "--logo" | "-L") - image_backend="ascii" - print_info() { info line_break; } - ;; - - # Screenshot - "--scrot" | "-s") - scrot_args "$@" - ;; - "--upload" | "-su") - scrot_upload="on" - scrot_args "$@" - ;; - - "--image_host") image_host="$2" ;; - "--scrot_cmd") scrot_cmd="$2" ;; - - # Other - "--config") - case "$2" in - "none" | "off" | "") ;; - *) - config_file="$(get_full_path "$2")" - get_user_config - ;; - esac - ;; - "--stdout") stdout="on" ;; - "-v") verbose="on" ;; - "-vv") set -x; verbose="on" ;; - "--help") usage ;; - "--version") - printf "%s\\n" "Neofetch $version" - exit 1 - ;; - "--gen-man") - help2man -n "A fast, highly customizable system info script" \ - -N ./neofetch -o neofetch.1 - exit 1 - ;; - - "--travis") - print_info() { - info title - info underline - - info "OS" distro - info "Host" model - info "Kernel" kernel - info "Uptime" uptime - info "Packages" packages - info "Shell" shell - info "Resolution" resolution - info "DE" de - info "WM" wm - info "WM Theme" wm_theme - info "Theme" theme - info "Icons" icons - info "Terminal" term - info "Terminal Font" term_font - info "CPU" cpu - info "GPU" gpu - info "GPU Driver" gpu_driver - info "Memory" memory - - info "CPU Usage" cpu_usage - info "Disk" disk - info "Battery" battery - info "Font" font - info "Song" song - info "Local IP" local_ip - info "Public IP" public_ip - info "Users" users - info "Install Date" install_date - - info line_break - info cols - info line_break - - # Testing. - prin "prin" - prin "prin" "prin" - - # Testing no subtitles. - info uptime - info disk - } - - refresh_rate="on" - shell_version="on" - cpu_display="infobar" - memory_display="infobar" - disk_display="infobar" - cpu_temp="C" - ;; - esac - - shift - done -} - main() { cache_uname get_os From 4ee3eadbaa48f71a304ceaf9ef918496a4dee48d Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Thu, 3 May 2018 16:22:56 +1000 Subject: [PATCH 22/25] general: In-lined license --- neofetch | 26 ++++++++++++++++++++++---- 1 file changed, 22 insertions(+), 4 deletions(-) diff --git a/neofetch b/neofetch index a2dd2d3d..5fd7a83f 100755 --- a/neofetch +++ b/neofetch @@ -1,12 +1,30 @@ #!/usr/bin/env bash -# set -x # vim: noai:ts=4:sw=4:expandtab # -# Neofetch: Simple system information script. +# Neofetch: A command-line system information tool written in bash 3.2+. # https://github.com/dylanaraps/neofetch # -# Created by Dylan Araps -# https://github.com/dylanaraps/ +# The MIT License (MIT) +# +# Copyright (c) 2016-2017 Dylan Araps +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in all +# copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +# SOFTWARE. # Neofetch version. version="3.4.1-git" From 698d1ef5cf65c6c438af2e728076741e0367fe4d Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Fri, 4 May 2018 07:56:18 +1000 Subject: [PATCH 23/25] general: Remove Makefile --- Makefile | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 Makefile diff --git a/Makefile b/Makefile deleted file mode 100644 index 7870d456..00000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -PREFIX ?= /usr -MANDIR ?= $(PREFIX)/share/man - -all: - @echo Run \'make install\' to install Neofetch. - -install: - @echo 'Making directories...' - @mkdir -p $(DESTDIR)$(PREFIX)/bin - @mkdir -p $(DESTDIR)$(MANDIR)/man1 - - @echo 'Installing binaries...' - @chmod 755 $(DESTDIR)$(PREFIX)/bin/neofetch - - @echo 'Installing man page...' - @cp -p neofetch.1 $(DESTDIR)$(MANDIR)/man1 - -uninstall: - @echo 'Removing files...' - @rm -rf $(DESTDIR)$(PREFIX)/bin/neofetch - @rm -rf $(DESTDIR)$(MANDIR)/man1/neofetch.1* From 16b6e79340dc2d0d42cf3629931d564b2e64940c Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Fri, 4 May 2018 08:33:32 +1000 Subject: [PATCH 24/25] general: Added missing ascii --- neofetch | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/neofetch b/neofetch index 5fd7a83f..7f6969ae 100755 --- a/neofetch +++ b/neofetch @@ -5313,6 +5313,32 @@ dhhyys+/-` EOF ;; + "ArcoLinux"*) + set_colors 7 4 + read -rd '' ascii_data <<'EOF' +${c2} /- + ooo: + yoooo/ + yooooooo + yooooooooo + yooooooooooo + .yooooooooooooo + .oooooooooooooooo + .oooooooarcoooooooo + .ooooooooo-oooooooooo + .ooooooooo- oooooooooo + :ooooooooo. :ooooooooo + :ooooooooo. :ooooooooo + :oooarcooo .oooarcooo + :ooooooooy .ooooooooo + :ooooooooo ${c1}/ooooooooooooooooooo${c2} + :ooooooooo ${c1}.-ooooooooooooooooo.${c2} + ooooooooo- ${c1}-ooooooooooooo.${c2} + ooooooooo- ${c1}.-oooooooooo.${c2} +ooooooooo. ${c1}-ooooooooo${c2} +EOF + ;; + "arch_small") set_colors 6 7 1 read -rd '' ascii_data <<'EOF' From 0c350594bbc65c656fab0cf9c9f4651f68b8aa15 Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Fri, 4 May 2018 08:49:13 +1000 Subject: [PATCH 25/25] general: Move ascii art back to fix merge conflicts. --- neofetch | 1817 +++++++++++++++++++++++++++--------------------------- 1 file changed, 909 insertions(+), 908 deletions(-) diff --git a/neofetch b/neofetch index 7f6969ae..4c6bba0e 100755 --- a/neofetch +++ b/neofetch @@ -50,6 +50,7 @@ shopt -s nocasematch reset="\e[0m" # Neofetch default config. + read -rd '' config <<'EOF' # See this wiki page for more info: # https://github.com/dylanaraps/neofetch/wiki/Customizing-Info @@ -4158,914 +4159,6 @@ uppercase() { # COLORS -set_colors() { - c1="$(color "$1")${ascii_bold}" - c2="$(color "$2")${ascii_bold}" - c3="$(color "$3")${ascii_bold}" - c4="$(color "$4")${ascii_bold}" - c5="$(color "$5")${ascii_bold}" - c6="$(color "$6")${ascii_bold}" - - [[ "$color_text" != "off" ]] && set_text_colors "$@" -} - -set_text_colors() { - if [[ "${colors[0]}" == "distro" ]]; then - title_color="$(color "$1")" - at_color="$reset" - underline_color="$reset" - subtitle_color="$(color "$2")" - colon_color="$reset" - info_color="$reset" - - # If the ascii art uses 8 as a color, make the text the fg. - ((${1:-1} == 8)) && title_color="$reset" - ((${2:-7} == 8)) && subtitle_color="$reset" - - # If the second color is white use the first for the subtitle. - ((${2:-7} == 7)) && subtitle_color="$(color "$1")" - ((${1:-1} == 7)) && title_color="$reset" - else - title_color="$(color "${colors[0]}")" - at_color="$(color "${colors[1]}")" - underline_color="$(color "${colors[2]}")" - subtitle_color="$(color "${colors[3]}")" - colon_color="$(color "${colors[4]}")" - info_color="$(color "${colors[5]}")" - fi - - # Bar colors. - if [[ "$bar_color_elapsed" == "distro" ]]; then - bar_color_elapsed="$(color fg)" - else - bar_color_elapsed="$(color "$bar_color_elapsed")" - fi - - case "$bar_color_total $1" in - "distro "[736]) bar_color_total="$(color "$1")" ;; - "distro "[0-9]) bar_color_total="$(color "$2")" ;; - *) bar_color_total="$(color "$bar_color_total")" ;; - esac -} - -color() { - case "$1" in - [0-6]) printf "%b" "${reset}\e[3${1}m" ;; - 7 | "fg") printf "%b" "\e[37m${reset}" ;; - *) printf "%b" "\e[38;5;${1}m" ;; - esac -} - -# OTHER - -stdout() { - image_backend="off" - unset subtitle_color - unset colon_color - unset info_color - unset underline_color - unset bold - unset title_color - unset at_color - unset text_padding - unset zws - unset reset - unset color_blocks - unset get_line_break -} - -err() { - err+="$(color 1)[!]\e[0m $1\n" -} - -get_full_path() { - # This function finds the absolute path from a relative one. - # For example "Pictures/Wallpapers" --> "/home/dylan/Pictures/Wallpapers" - - # If the file exists in the current directory, stop here. - [[ -f "${PWD}/${1/*\/}" ]] && { printf "%s\n" "${PWD}/${1/*\/}"; return; } - - if ! cd "${1%/*}"; then - err "Error: Directory '${1%/*}' doesn't exist or is inaccessible" - err " Check that the directory exists or try another directory." - exit 1 - fi - - local full_dir="${1##*/}" - - # Iterate down a (possible) chain of symlinks. - while [[ -L "$full_dir" ]]; do - full_dir="$(readlink "$full_dir")" - cd "${full_dir%/*}" || exit - full_dir="${full_dir##*/}" - done - - # Final directory. - full_dir="$(pwd -P)/${1/*\/}" - - [[ -e "$full_dir" ]] && printf "%s\n" "$full_dir" -} - -get_user_config() { - # Check $config_file. - if [[ -f "$config_file" ]]; then - source "$config_file" - err "Config: Sourced user config. (${config_file})" - old_options - return - fi - mkdir -p "${XDG_CONFIG_HOME}/neofetch/" - - # Check ${XDG_CONFIG_HOME}/neofetch and create the - # dir/files if they don't exist. - if [[ -f "${XDG_CONFIG_HOME}/neofetch/config" ]]; then - config_file="${XDG_CONFIG_HOME}/neofetch/config" - - elif [[ -f "${XDG_CONFIG_HOME}/neofetch/config.conf" ]]; then - config_file="${XDG_CONFIG_HOME}/neofetch/config.conf" - - else - config_file="${XDG_CONFIG_HOME}/neofetch/config.conf" - - # The config file doesn't exist, create it. - printf "%s\n" "$config" > "$config_file" - fi - - source "$config_file" - err "Config: Sourced user config. (${config_file})" - old_options -} - -bar() { - # Get the values. - elapsed="$(($1 * bar_length / $2))" - - # Create the bar with spaces. - printf -v prog "%${elapsed}s" - printf -v total "%$((bar_length - elapsed))s" - - # Set the colors and swap the spaces for $bar_char_. - bar+="${bar_color_elapsed}${prog// /${bar_char_elapsed}}" - bar+="${bar_color_total}${total// /${bar_char_total}}" - - # Borders. - [[ "$bar_border" == "on" ]] && \ - bar="$(color fg)[${bar}$(color fg)]" - - printf "%b" "${bar}${info_color}" -} - -cache() { - if [[ "$2" ]]; then - mkdir -p "${cache_dir}/neofetch" - printf "%s" "${1/*-}=\"$2\"" > "${cache_dir}/neofetch/${1/*-}" - fi -} - -get_cache_dir() { - case "$os" in - "Mac OS X") cache_dir="/Library/Caches" ;; - *) cache_dir="/tmp" ;; - esac -} - -kde_config_dir() { - # If the user is using KDE get the KDE - # configuration directory. - if [[ "$kde_config_dir" ]]; then - return - - elif type -p kf5-config >/dev/null 2>&1; then - kde_config_dir="$(kf5-config --path config)" - - elif type -p kde4-config >/dev/null 2>&1; then - kde_config_dir="$(kde4-config --path config)" - - elif type -p kde-config >/dev/null 2>&1; then - kde_config_dir="$(kde-config --path config)" - - elif [[ -d "${HOME}/.kde4" ]]; then - kde_config_dir="${HOME}/.kde4/share/config" - - elif [[ -d "${HOME}/.kde3" ]]; then - kde_config_dir="${HOME}/.kde3/share/config" - fi - - kde_config_dir="${kde_config_dir/$'/:'*}" -} - -get_term_padding() { - # Terminal info. - # - # Parse terminal config files to get - # info about padding. Due to how w3m-img - # works padding around the terminal throws - # off the cursor placement calculation in - # specific terminals. - # - # Note: This issue only seems to affect - # URxvt. - ((term_run != 1)) && get_term - - case "$term" in - "URxvt"*) - border="$(xrdb -query | awk -F ':' '/^(URxvt|\*).internalBorder/ {printf $2; exit}')" - ;; - esac -} - -dynamic_prompt() { - case "$image_backend" in - "ascii") printf "\n" ;; - "off") return ;; - *) - get_term_padding - lines="$(((border + height + yoffset) / font_height))" - image_prompt="on" - ;; - esac - - # If the info is higher than the ascii/image place the prompt - # based on the info height instead of the ascii/image height. - if ((lines < info_height)); then - [[ "$image_prompt" ]] && printf "\n" - return - else - [[ "$image_prompt" ]] && printf "%b\n" "$line_breaks" - lines="$((lines - info_height + 1))" - fi - - # Set the prompt location. - if ((lines > 1)); then - case "$kernel_name" in - "OpenBSD") tput cud "$lines" ;; - *) printf "%b" "\e[${lines}B" ;; - esac - fi -} - -old_functions() { - # Deprecated functions. - # Neofetch 2.0 changed the names of a few variables. - # This function adds backwards compatibility for the - # old variable names. - if type printinfo >/dev/null 2>&1; then - print_info() { printinfo ; } - get_wmtheme() { get_wm_theme; wmtheme="$wm_theme"; } - get_termfont() { get_term_font; termfont="$term_font"; } - get_localip() { get_local_ip; localip="$local_ip"; } - get_publicip() { get_public_ip; publicip="$public_ip"; } - get_linebreak() { get_line_break; linebreak="$line_break"; } - fi - - get_birthday() { get_install_date; birthday="$install_date"; } -} - -old_options() { - [[ -n "$osx_buildversion" ]] && \ - err "Config: \$osx_buildversion is deprecated, use \$distro_shorthand instead." - [[ -n "$osx_codename" ]] && \ - err "Config: \$osx_codename is deprecated, use \$distro_shorthand instead." - [[ "$cpu_cores" == "on" ]] && \ - err "Config: cpu_cores='on' is deprecated, use cpu_cores='logical|physical|off' instead." - [[ -n "$image" ]] && \ - { err "Config: \$image is deprecated, use \$image_source instead."; image_source="$image"; } - - # All progress_ variables were changed to bar_. - [[ -n "$progress_char" ]] && \ - err "Config: \$progress_char is deprecated, use \$bar_char_{elapsed,total} instead." - [[ -n "$progress_border" ]] && \ - { err "Config: \$progress_border is deprecated, use \$bar_border instead."; \ - bar_border="$progress_border"; } - [[ -n "$progress_length" ]] && \ - { err "Config: \$progress_length is deprecated, use \$bar_length instead."; \ - bar_length="$progress_length"; } - [[ -n "$progress_color_elapsed" ]] && \ - { err "Config: \$progress_color_elapsed is deprecated, use \$bar_color_elapsed instead."; \ - bar_color_elapsed="$progress_color_elapsed"; } - [[ -n "$progress_color_total" ]] && \ - { err "Config: \$progress_color_total is deprecated, use \$bar_color_total instead."; \ - bar_color_total="$progress_color_total"; } - - # All cpufreq values were changed in 3.0. - [[ "$speed_type" == "current" ]] && \ - err "Config: speed_type='current' is deprecated, use speed_type='scaling_cur_freq' instead." - [[ "$speed_type" == "min" ]] && \ - err "Config: speed_type='min' is deprecated, use speed_type='scaling_min_freq' instead." - [[ "$speed_type" == "max" ]] && \ - err "Config: speed_type='max' is deprecated, use speed_type='scaling_max_freq' instead." - [[ "$speed_type" == "bios" ]] && \ - err "Config: speed_type='bios' is deprecated, use speed_type='bios_limit' instead." - - # Ascii_logo_size was removed in 3.0. - [[ "$ascii_logo_size" ]] && \ - err "Config: ascii_logo_size is deprecated, use ascii_distro='{distro}_small' instead." - - # $start and $end were replaced with ${block_range[@]} in 3.0. - [[ "$start" && "$end" ]] && \ - { err "Config: \$start and \$end are deprecated, use block_range=(0 7) instead."; \ - block_range=("$start" "$end"); } - - # Fahrenheit support was added to CPU so the options were changed. - [[ "$cpu_temp" == "on" ]] && \ - { err "Config: cpu_temp='on' is deprecated, use cpu_temp='C' or 'F' instead."; - cpu_temp="C"; } - - # Birthday was renamed to Install Date in 3.0 - [[ -n "$birthday_time" ]] && \ - { err "Config: \$birthday_time is deprecated, use \3install_time instead."; \ - install_time="$birthday_time"; } - - # Scrot dir was removed in 3.1.0. - [[ -n "$scrot_dir" ]] && scrot_dir= - - # cpu_shorthand was deprecated in 3.3.0 - [[ -n "$cpu_shorthand" ]] && \ - { err "Config: \$cpu_shorthand is deprecated, use \$cpu_brand, \$cpu_cores, and - \$cpu_speed instead."; } -} - -cache_uname() { - # Cache the output of uname so we don't - # have to spawn it multiple times. - IFS=" " read -ra uname <<< "$(uname -sr)" - - kernel_name="${uname[0]}" - kernel_version="${uname[1]}" -} - -convert_time() { - # Convert ls timestamp to 'Tue 06 Dec 2016 4:58 PM' format. - year="$1" - day="${3#0}" - - # Split time into hours/minutes. - hour="${4/:*}" - min="${4/${hour}}" - - # Get month. (Month code is used for day of week) - # Due to different versions of 'ls', the month can be 1, 01 or Jan. - case "$2" in - 1 | 01 | "Jan") month="Jan"; month_code=0 ;; - 2 | 02 | "Feb") month="Feb"; month_code=3 ;; - 3 | 03 | "Mar") month="Mar"; month_code=3 ;; - 4 | 04 | "Apr") month="Apr"; month_code=6 ;; - 5 | 05 | "May") month="May"; month_code=1 ;; - 6 | 06 | "Jun") month="Jun"; month_code=4 ;; - 7 | 07 | "Jul") month="Jul"; month_code=6 ;; - 8 | 08 | "Aug") month="Aug"; month_code=2 ;; - 9 | 09 | "Sep") month="Sep"; month_code=5 ;; - 10 | "Oct") month="Oct"; month_code=0 ;; - 11 | "Nov") month="Nov"; month_code=3 ;; - 12 | "Dec") month="Dec"; month_code=5 ;; - esac - - # Get leap year. - # Source: http://stackoverflow.com/questions/725098/leap-year-calculation - [[ "$((year % 4))" == 0 && "$((year % 100))" != 0 || "$((year % 400))" == 0 ]] && \ - [[ "$month" =~ (Jan|Feb) ]] && \ - leap_code=1 - - # Calculate day of week. - # Source: http://blog.artofmemory.com/how-to-calculate-the-day-of-the-week-4203.html - year_code="$((${year/??} + (${year/??} / 4) % 7))" - week_day="$(((year_code + month_code + 6 + day - leap_code) % 7))" - - case "$week_day" in - 0) week_day="Sun" ;; - 1) week_day="Mon" ;; - 2) week_day="Tue" ;; - 3) week_day="Wed" ;; - 4) week_day="Thu" ;; - 5) week_day="Fri" ;; - 6) week_day="Sat" ;; - esac - - # Convert 24 hour time to 12 hour time + AM/PM. - case "$install_time_format" in - "12h") - case "$hour" in - [0-9] | 0[0-9] | 1[0-1]) time="${hour/00/12}${min} AM" ;; - *) time="$((hour - 12))${min} PM" ;; - esac - ;; - *) time="$4" ;; - esac - - # Toggle showing the time. - [[ "$install_time" == "off" ]] && unset time - - # Print the install date. - printf "%s" "$week_day $day $month $year $time" -} - -get_ppid() { - # Get parent process ID of PID. - case "$os" in - "Windows") - ppid="$(ps -p "${1:-$PPID}" | awk '{printf $2}')" - ppid="${ppid/'PPID'}" - ;; - - "Linux") - ppid="$(grep -i -F "PPid:" "/proc/${1:-$PPID}/status")" - ppid="$(trim "${ppid/PPid:}")" - ;; - - *) - ppid="$(ps -p "${1:-$PPID}" -o ppid=)" - ;; - esac - - printf "%s" "$ppid" -} - -get_process_name() { - # Get PID name. - case "$os" in - "Windows") - name="$(ps -p "${1:-$PPID}" | awk '{printf $8}')" - name="${name/'COMMAND'}" - name="${name/*\/}" - ;; - - "Linux") - name="$(< "/proc/${1:-$PPID}/comm")" - ;; - - *) - name="$(ps -p "${1:-$PPID}" -o comm=)" - ;; - esac - - printf "%s" "$name" -} - -decode_url() { - decode="${1//+/ }" - printf "%b" "${decode//%/\\x}" -} - -# FINISH UP - -usage() { printf "%s" "\ -Usage: neofetch --option \"value\" --option \"value\" - -Neofetch is a CLI system information tool written in BASH. Neofetch -displays information about your system next to an image, your OS logo, -or any ASCII file of your choice. - -NOTE: Every launch flag has a config option. - -Options: - -INFO: - --disable infoname Allows you to disable an info line from appearing - in the output. - - NOTE: You can supply multiple args. eg. 'neofetch --disable cpu gpu' - - --os_arch on/off Hide/Show OS architecture. - --speed_type type Change the type of cpu speed to display. - Possible values: current, min, max, bios, - scaling_current, scaling_min, scaling_max - - NOTE: This only supports Linux with cpufreq. - - --speed_shorthand on/off Whether or not to show decimals in CPU speed. - - NOTE: This flag is not supported in systems with CPU speed less than - 1 GHz. - - --cpu_brand on/off Enable/Disable CPU brand in output. - --cpu_cores type Whether or not to display the number of CPU cores - Possible values: logical, physical, off - - NOTE: 'physical' doesn't work on BSD. - - --cpu_speed on/off Hide/Show cpu speed. - --cpu_temp C/F/off Hide/Show cpu temperature. - - NOTE: This only works on Linux and BSD. - - NOTE: For FreeBSD and NetBSD-based systems, you need to enable - coretemp kernel module. This only supports newer Intel processors. - - --distro_shorthand on/off Shorten the output of distro (tiny, on, off) - - NOTE: This option won't work in Windows (Cygwin) - - --kernel_shorthand on/off Shorten the output of kernel - - NOTE: This option won't work in BSDs (except PacBSD and PC-BSD) - - --uptime_shorthand on/off Shorten the output of uptime (tiny, on, off) - --refresh_rate on/off Whether to display the refresh rate of each monitor - Unsupported on Windows - --gpu_brand on/off Enable/Disable GPU brand in output. (AMD/NVIDIA/Intel) - --gpu_type type Which GPU to display. (all, dedicated, integrated) - - NOTE: This only supports Linux. - - --gtk_shorthand on/off Shorten output of gtk theme/icons - --gtk2 on/off Enable/Disable gtk2 theme/font/icons output - --gtk3 on/off Enable/Disable gtk3 theme/font/icons output - --shell_path on/off Enable/Disable showing \$SHELL path - --shell_version on/off Enable/Disable showing \$SHELL version - --disk_show value Which disks to display. - Possible values: '/', '/dev/sdXX', '/path/to/mount point' - - NOTE: Multiple values can be given. (--disk_show '/' '/dev/sdc1') - - --disk_subtitle type What information to append to the Disk subtitle. - Takes: name, mount, dir - - 'name' shows the disk's name (sda1, sda2, etc) - - 'mount' shows the disk's mount point (/, /mnt/Local Disk, etc) - - 'dir' shows the basename of the disks's path. (/, Local Disk, etc) - - --ip_host url URL to query for public IP - --song_shorthand on/off Print the Artist/Title on separate lines - --music_player player-name Manually specify a player to use. - Available values are listed in the config file - --install_time on/off Enable/Disable showing the time in Install Date output. - --install_time_format 12h/24h - Set time format in Install Date to be 12 hour or 24 hour. - -TEXT FORMATTING: - --colors x x x x x x Changes the text colors in this order: - title, @, underline, subtitle, colon, info - --underline on/off Enable/Disable the underline. - --underline_char char Character to use when underlining title - --bold on/off Enable/Disable bold text - -COLOR BLOCKS: - --color_blocks on/off Enable/Disable the color blocks - --block_width num Width of color blocks in spaces - --block_height num Height of color blocks in lines - --block_range num num Range of colors to print as blocks - -BARS: - --bar_char 'elapsed char' 'total char' - Characters to use when drawing bars. - --bar_border on/off Whether or not to surround the bar with '[]' - --bar_length num Length in spaces to make the bars. - --bar_colors num num Colors to make the bar. - Set in this order: elapsed, total - --cpu_display mode Bar mode. - Possible values: bar, infobar, barinfo, off - --memory_display mode Bar mode. - Possible values: bar, infobar, barinfo, off - --battery_display mode Bar mode. - Possible values: bar, infobar, barinfo, off - --disk_display mode Bar mode. - Possible values: bar, infobar, barinfo, off - -IMAGE BACKEND: - --backend backend Which image backend to use. - Possible values: 'ascii', 'caca', 'catimg', 'jp2a', 'iterm2', 'off', - 'sixel', 'tycat', 'w3m' - --source source Which image or ascii file to use. - Possible values: 'auto', 'ascii', 'wallpaper', '/path/to/img', - '/path/to/ascii', '/path/to/dir/' - --ascii source Shortcut to use 'ascii' backend. - --caca source Shortcut to use 'caca' backend. - --catimg source Shortcut to use 'catimg' backend. - --iterm2 source Shortcut to use 'iterm2' backend. - --jp2a source Shortcut to use 'jp2a' backend. - --kitty source Shortcut to use 'kitty' backend. - --pixterm source Shortcut to use 'pixterm' backend. - --sixel source Shortcut to use 'sixel' backend. - --termpix source Shortcut to use 'termpix' backend. - --tycat source Shortcut to use 'tycat' backend. - --w3m source Shortcut to use 'w3m' backend. - --off Shortcut to use 'off' backend. - - NOTE: 'source; can be any of the following: 'auto', 'ascii', 'wallpaper', '/path/to/img', - '/path/to/ascii', '/path/to/dir/' - -ASCII: - --ascii_colors x x x x x x Colors to print the ascii art - --ascii_distro distro Which Distro's ascii art to print - - NOTE: Arch and Ubuntu have 'old' logo variants. - - NOTE: Use 'arch_old' or 'ubuntu_old' to use the old logos. - - NOTE: Ubuntu has flavor variants. - - NOTE: Change this to 'Lubuntu', 'Xubuntu', 'Ubuntu-GNOME', - 'Ubuntu-Studio' or 'Ubuntu-Budgie' to use the flavors. - - NOTE: Alpine, Arch, CRUX, Debian, Gentoo, FreeBSD, Mac, NixOS, - OpenBSD, and Void have a smaller logo variant. - - NOTE: Use '{distro name}_small' to use the small variants. - - --ascii_bold on/off Whether or not to bold the ascii logo. - -L, --logo Hide the info text and only show the ascii logo. - - Possible values: bar, infobar, barinfo, off - -IMAGE: - --loop Redraw the image constantly until Ctrl+C is used. This fixes issues - in some terminals emulators when using image mode. - --size 00px | --size 00% How to size the image. - Possible values: auto, 00px, 00%, none - --crop_mode mode Which crop mode to use - Takes the values: normal, fit, fill - --crop_offset value Change the crop offset for normal mode. - Possible values: northwest, north, northeast, - west, center, east, southwest, south, southeast - - --xoffset px How close the image will be to the left edge of the - window. This only works with w3m. - --yoffset px How close the image will be to the top edge of the - window. This only works with w3m. - --bg_color color Background color to display behind transparent image. - This only works with w3m. - --gap num Gap between image and text. - - NOTE: --gap can take a negative value which will move the text - closer to the left side. - - --clean Delete cached files and thumbnails. - -SCREENSHOT: - -s, --scrot /path/to/img Take a screenshot, if path is left empty the screen- - shot function will use \$scrot_dir and \$scrot_name. - -su, --upload /path/to/img Same as --scrot but uploads the scrot to a website. - --image_host imgur/teknik Website to upload scrots to. - --scrot_cmd cmd Screenshot program to launch - -OTHER: - --config /path/to/config Specify a path to a custom config file - --config none Launch the script without a config file - --stdout Turn off all colors and disables any ASCII/image backend. - --help Print this text and exit - --version Show neofetch version - -v Display error messages. - -vv Display a verbose log for error reporting. - -DEVELOPER: - --gen-man Generate a manpage for Neofetch in your PWD. (Requires GNU help2man) - - -Report bugs to https://github.com/dylanaraps/neofetch/issues - -" -exit 1 -} - -get_args() { - # Check the commandline flags early for '--config'. - [[ "$*" != *--config* ]] && get_user_config - - while [[ "$1" ]]; do - case "$1" in - # Info - "--os_arch") os_arch="$2" ;; - "--cpu_cores") cpu_cores="$2" ;; - "--cpu_speed") cpu_speed="$2" ;; - "--speed_type") speed_type="$2" ;; - "--speed_shorthand") speed_shorthand="$2" ;; - "--distro_shorthand") distro_shorthand="$2" ;; - "--kernel_shorthand") kernel_shorthand="$2" ;; - "--uptime_shorthand") uptime_shorthand="$2" ;; - "--cpu_brand") cpu_brand="$2" ;; - "--gpu_brand") gpu_brand="$2" ;; - "--gpu_type") gpu_type="$2" ;; - "--refresh_rate") refresh_rate="$2" ;; - "--gtk_shorthand") gtk_shorthand="$2" ;; - "--gtk2") gtk2="$2" ;; - "--gtk3") gtk3="$2" ;; - "--shell_path") shell_path="$2" ;; - "--shell_version") shell_version="$2" ;; - "--ip_host") public_ip_host="$2" ;; - "--song_shorthand") song_shorthand="$2" ;; - "--music_player") music_player="$2" ;; - "--install_time") install_time="$2" ;; - "--install_time_format") install_time_format="$2" ;; - "--cpu_temp") - cpu_temp="$2" - [[ "$cpu_temp" == "on" ]] && cpu_temp="C" - ;; - - "--disk_subtitle") disk_subtitle="$2" ;; - "--disk_show") - unset disk_show - for arg in "$@"; do - case "$arg" in - "--disk_show") ;; - "-"*) break ;; - *) disk_show+=("$arg") ;; - esac - done - ;; - - "--disable") - for func in "$@"; do - case "$func" in - "--disable") continue ;; - "-"*) break ;; - *) - ((bash_version >= 4)) && func="${func,,}" - unset -f "get_$func" - ;; - esac - done - ;; - - # Text Colors - "--colors") - unset colors - for arg in "$2" "$3" "$4" "$5" "$6" "$7"; do - case "$arg" in - "-"*) break ;; - *) colors+=("$arg") ;; - esac - done - colors+=(7 7 7 7 7 7) - ;; - - # Text Formatting - "--underline") underline_enabled="$2" ;; - "--underline_char") underline_char="$2" ;; - "--bold") bold="$2" ;; - - # Color Blocks - "--color_blocks") color_blocks="$2" ;; - "--block_range") block_range=("$2" "$3") ;; - "--block_width") block_width="$2" ;; - "--block_height") block_height="$2" ;; - - # Bars - "--bar_char") - bar_char_elapsed="$2" - bar_char_total="$3" - ;; - - "--bar_border") bar_border="$2" ;; - "--bar_length") bar_length="$2" ;; - "--bar_colors") - bar_color_elapsed="$2" - bar_color_total="$3" - ;; - - "--cpu_display") cpu_display="$2" ;; - "--memory_display") memory_display="$2" ;; - "--battery_display") battery_display="$2" ;; - "--disk_display") disk_display="$2" ;; - - # Image backend - "--backend") image_backend="$2" ;; - "--source") image_source="$2" ;; - "--ascii" | "--caca" | "--catimg" | "--jp2a" | "--iterm2" | "--off" | "--pixterm" |\ - "--sixel" | "--termpix" | "--tycat" | "--w3m" | "--kitty") - image_backend="${1/--}" - case "$2" in - "-"* | "") ;; - *) image_source="$2" ;; - esac - ;; - - # Image options - "--loop") image_loop="on" ;; - "--image_size" | "--size") image_size="$2" ;; - "--crop_mode") crop_mode="$2" ;; - "--crop_offset") crop_offset="$2" ;; - "--xoffset") xoffset="$2" ;; - "--yoffset") yoffset="$2" ;; - "--background_color" | "--bg_color") background_color="$2" ;; - "--gap") gap="$2" ;; - "--clean") - [[ -d "$thumbnail_dir" ]] && rm -rf "$thumbnail_dir" - rm -rf "/Library/Caches/neofetch/" - rm -rf "/tmp/neofetch/" - exit - ;; - - "--ascii_colors") - unset ascii_colors - for arg in "$2" "$3" "$4" "$5" "$6" "$7"; do - case "$arg" in - "-"*) break ;; - *) ascii_colors+=("$arg") - esac - done - ascii_colors+=(7 7 7 7 7 7) - ;; - - "--ascii_distro") - image_backend="ascii" - ascii_distro="$2" - case "$2" in "-"* | "") ascii_distro="$distro" ;; esac - ;; - - "--ascii_bold") ascii_bold="$2" ;; - "--logo" | "-L") - image_backend="ascii" - print_info() { info line_break; } - ;; - - # Screenshot - "--scrot" | "-s") - scrot_args "$@" - ;; - "--upload" | "-su") - scrot_upload="on" - scrot_args "$@" - ;; - - "--image_host") image_host="$2" ;; - "--scrot_cmd") scrot_cmd="$2" ;; - - # Other - "--config") - case "$2" in - "none" | "off" | "") ;; - *) - config_file="$(get_full_path "$2")" - get_user_config - ;; - esac - ;; - "--stdout") stdout="on" ;; - "-v") verbose="on" ;; - "-vv") set -x; verbose="on" ;; - "--help") usage ;; - "--version") - printf "%s\\n" "Neofetch $version" - exit 1 - ;; - "--gen-man") - help2man -n "A fast, highly customizable system info script" \ - -N ./neofetch -o neofetch.1 - exit 1 - ;; - - "--travis") - print_info() { - info title - info underline - - info "OS" distro - info "Host" model - info "Kernel" kernel - info "Uptime" uptime - info "Packages" packages - info "Shell" shell - info "Resolution" resolution - info "DE" de - info "WM" wm - info "WM Theme" wm_theme - info "Theme" theme - info "Icons" icons - info "Terminal" term - info "Terminal Font" term_font - info "CPU" cpu - info "GPU" gpu - info "GPU Driver" gpu_driver - info "Memory" memory - - info "CPU Usage" cpu_usage - info "Disk" disk - info "Battery" battery - info "Font" font - info "Song" song - info "Local IP" local_ip - info "Public IP" public_ip - info "Users" users - info "Install Date" install_date - - info line_break - info cols - info line_break - - # Testing. - prin "prin" - prin "prin" "prin" - - # Testing no subtitles. - info uptime - info disk - } - - refresh_rate="on" - shell_version="on" - cpu_display="infobar" - memory_display="infobar" - disk_display="infobar" - cpu_temp="C" - ;; - esac - - shift - done -} - get_distro_colors() { # This function sets the text colors according # to your OS/Distro's logo colors. @@ -8662,6 +7755,914 @@ EOF fi } +set_colors() { + c1="$(color "$1")${ascii_bold}" + c2="$(color "$2")${ascii_bold}" + c3="$(color "$3")${ascii_bold}" + c4="$(color "$4")${ascii_bold}" + c5="$(color "$5")${ascii_bold}" + c6="$(color "$6")${ascii_bold}" + + [[ "$color_text" != "off" ]] && set_text_colors "$@" +} + +set_text_colors() { + if [[ "${colors[0]}" == "distro" ]]; then + title_color="$(color "$1")" + at_color="$reset" + underline_color="$reset" + subtitle_color="$(color "$2")" + colon_color="$reset" + info_color="$reset" + + # If the ascii art uses 8 as a color, make the text the fg. + ((${1:-1} == 8)) && title_color="$reset" + ((${2:-7} == 8)) && subtitle_color="$reset" + + # If the second color is white use the first for the subtitle. + ((${2:-7} == 7)) && subtitle_color="$(color "$1")" + ((${1:-1} == 7)) && title_color="$reset" + else + title_color="$(color "${colors[0]}")" + at_color="$(color "${colors[1]}")" + underline_color="$(color "${colors[2]}")" + subtitle_color="$(color "${colors[3]}")" + colon_color="$(color "${colors[4]}")" + info_color="$(color "${colors[5]}")" + fi + + # Bar colors. + if [[ "$bar_color_elapsed" == "distro" ]]; then + bar_color_elapsed="$(color fg)" + else + bar_color_elapsed="$(color "$bar_color_elapsed")" + fi + + case "$bar_color_total $1" in + "distro "[736]) bar_color_total="$(color "$1")" ;; + "distro "[0-9]) bar_color_total="$(color "$2")" ;; + *) bar_color_total="$(color "$bar_color_total")" ;; + esac +} + +color() { + case "$1" in + [0-6]) printf "%b" "${reset}\e[3${1}m" ;; + 7 | "fg") printf "%b" "\e[37m${reset}" ;; + *) printf "%b" "\e[38;5;${1}m" ;; + esac +} + +# OTHER + +stdout() { + image_backend="off" + unset subtitle_color + unset colon_color + unset info_color + unset underline_color + unset bold + unset title_color + unset at_color + unset text_padding + unset zws + unset reset + unset color_blocks + unset get_line_break +} + +err() { + err+="$(color 1)[!]\e[0m $1\n" +} + +get_full_path() { + # This function finds the absolute path from a relative one. + # For example "Pictures/Wallpapers" --> "/home/dylan/Pictures/Wallpapers" + + # If the file exists in the current directory, stop here. + [[ -f "${PWD}/${1/*\/}" ]] && { printf "%s\n" "${PWD}/${1/*\/}"; return; } + + if ! cd "${1%/*}"; then + err "Error: Directory '${1%/*}' doesn't exist or is inaccessible" + err " Check that the directory exists or try another directory." + exit 1 + fi + + local full_dir="${1##*/}" + + # Iterate down a (possible) chain of symlinks. + while [[ -L "$full_dir" ]]; do + full_dir="$(readlink "$full_dir")" + cd "${full_dir%/*}" || exit + full_dir="${full_dir##*/}" + done + + # Final directory. + full_dir="$(pwd -P)/${1/*\/}" + + [[ -e "$full_dir" ]] && printf "%s\n" "$full_dir" +} + +get_user_config() { + # Check $config_file. + if [[ -f "$config_file" ]]; then + source "$config_file" + err "Config: Sourced user config. (${config_file})" + old_options + return + fi + mkdir -p "${XDG_CONFIG_HOME}/neofetch/" + + # Check ${XDG_CONFIG_HOME}/neofetch and create the + # dir/files if they don't exist. + if [[ -f "${XDG_CONFIG_HOME}/neofetch/config" ]]; then + config_file="${XDG_CONFIG_HOME}/neofetch/config" + + elif [[ -f "${XDG_CONFIG_HOME}/neofetch/config.conf" ]]; then + config_file="${XDG_CONFIG_HOME}/neofetch/config.conf" + + else + config_file="${XDG_CONFIG_HOME}/neofetch/config.conf" + + # The config file doesn't exist, create it. + printf "%s\n" "$config" > "$config_file" + fi + + source "$config_file" + err "Config: Sourced user config. (${config_file})" + old_options +} + +bar() { + # Get the values. + elapsed="$(($1 * bar_length / $2))" + + # Create the bar with spaces. + printf -v prog "%${elapsed}s" + printf -v total "%$((bar_length - elapsed))s" + + # Set the colors and swap the spaces for $bar_char_. + bar+="${bar_color_elapsed}${prog// /${bar_char_elapsed}}" + bar+="${bar_color_total}${total// /${bar_char_total}}" + + # Borders. + [[ "$bar_border" == "on" ]] && \ + bar="$(color fg)[${bar}$(color fg)]" + + printf "%b" "${bar}${info_color}" +} + +cache() { + if [[ "$2" ]]; then + mkdir -p "${cache_dir}/neofetch" + printf "%s" "${1/*-}=\"$2\"" > "${cache_dir}/neofetch/${1/*-}" + fi +} + +get_cache_dir() { + case "$os" in + "Mac OS X") cache_dir="/Library/Caches" ;; + *) cache_dir="/tmp" ;; + esac +} + +kde_config_dir() { + # If the user is using KDE get the KDE + # configuration directory. + if [[ "$kde_config_dir" ]]; then + return + + elif type -p kf5-config >/dev/null 2>&1; then + kde_config_dir="$(kf5-config --path config)" + + elif type -p kde4-config >/dev/null 2>&1; then + kde_config_dir="$(kde4-config --path config)" + + elif type -p kde-config >/dev/null 2>&1; then + kde_config_dir="$(kde-config --path config)" + + elif [[ -d "${HOME}/.kde4" ]]; then + kde_config_dir="${HOME}/.kde4/share/config" + + elif [[ -d "${HOME}/.kde3" ]]; then + kde_config_dir="${HOME}/.kde3/share/config" + fi + + kde_config_dir="${kde_config_dir/$'/:'*}" +} + +get_term_padding() { + # Terminal info. + # + # Parse terminal config files to get + # info about padding. Due to how w3m-img + # works padding around the terminal throws + # off the cursor placement calculation in + # specific terminals. + # + # Note: This issue only seems to affect + # URxvt. + ((term_run != 1)) && get_term + + case "$term" in + "URxvt"*) + border="$(xrdb -query | awk -F ':' '/^(URxvt|\*).internalBorder/ {printf $2; exit}')" + ;; + esac +} + +dynamic_prompt() { + case "$image_backend" in + "ascii") printf "\n" ;; + "off") return ;; + *) + get_term_padding + lines="$(((border + height + yoffset) / font_height))" + image_prompt="on" + ;; + esac + + # If the info is higher than the ascii/image place the prompt + # based on the info height instead of the ascii/image height. + if ((lines < info_height)); then + [[ "$image_prompt" ]] && printf "\n" + return + else + [[ "$image_prompt" ]] && printf "%b\n" "$line_breaks" + lines="$((lines - info_height + 1))" + fi + + # Set the prompt location. + if ((lines > 1)); then + case "$kernel_name" in + "OpenBSD") tput cud "$lines" ;; + *) printf "%b" "\e[${lines}B" ;; + esac + fi +} + +old_functions() { + # Deprecated functions. + # Neofetch 2.0 changed the names of a few variables. + # This function adds backwards compatibility for the + # old variable names. + if type printinfo >/dev/null 2>&1; then + print_info() { printinfo ; } + get_wmtheme() { get_wm_theme; wmtheme="$wm_theme"; } + get_termfont() { get_term_font; termfont="$term_font"; } + get_localip() { get_local_ip; localip="$local_ip"; } + get_publicip() { get_public_ip; publicip="$public_ip"; } + get_linebreak() { get_line_break; linebreak="$line_break"; } + fi + + get_birthday() { get_install_date; birthday="$install_date"; } +} + +old_options() { + [[ -n "$osx_buildversion" ]] && \ + err "Config: \$osx_buildversion is deprecated, use \$distro_shorthand instead." + [[ -n "$osx_codename" ]] && \ + err "Config: \$osx_codename is deprecated, use \$distro_shorthand instead." + [[ "$cpu_cores" == "on" ]] && \ + err "Config: cpu_cores='on' is deprecated, use cpu_cores='logical|physical|off' instead." + [[ -n "$image" ]] && \ + { err "Config: \$image is deprecated, use \$image_source instead."; image_source="$image"; } + + # All progress_ variables were changed to bar_. + [[ -n "$progress_char" ]] && \ + err "Config: \$progress_char is deprecated, use \$bar_char_{elapsed,total} instead." + [[ -n "$progress_border" ]] && \ + { err "Config: \$progress_border is deprecated, use \$bar_border instead."; \ + bar_border="$progress_border"; } + [[ -n "$progress_length" ]] && \ + { err "Config: \$progress_length is deprecated, use \$bar_length instead."; \ + bar_length="$progress_length"; } + [[ -n "$progress_color_elapsed" ]] && \ + { err "Config: \$progress_color_elapsed is deprecated, use \$bar_color_elapsed instead."; \ + bar_color_elapsed="$progress_color_elapsed"; } + [[ -n "$progress_color_total" ]] && \ + { err "Config: \$progress_color_total is deprecated, use \$bar_color_total instead."; \ + bar_color_total="$progress_color_total"; } + + # All cpufreq values were changed in 3.0. + [[ "$speed_type" == "current" ]] && \ + err "Config: speed_type='current' is deprecated, use speed_type='scaling_cur_freq' instead." + [[ "$speed_type" == "min" ]] && \ + err "Config: speed_type='min' is deprecated, use speed_type='scaling_min_freq' instead." + [[ "$speed_type" == "max" ]] && \ + err "Config: speed_type='max' is deprecated, use speed_type='scaling_max_freq' instead." + [[ "$speed_type" == "bios" ]] && \ + err "Config: speed_type='bios' is deprecated, use speed_type='bios_limit' instead." + + # Ascii_logo_size was removed in 3.0. + [[ "$ascii_logo_size" ]] && \ + err "Config: ascii_logo_size is deprecated, use ascii_distro='{distro}_small' instead." + + # $start and $end were replaced with ${block_range[@]} in 3.0. + [[ "$start" && "$end" ]] && \ + { err "Config: \$start and \$end are deprecated, use block_range=(0 7) instead."; \ + block_range=("$start" "$end"); } + + # Fahrenheit support was added to CPU so the options were changed. + [[ "$cpu_temp" == "on" ]] && \ + { err "Config: cpu_temp='on' is deprecated, use cpu_temp='C' or 'F' instead."; + cpu_temp="C"; } + + # Birthday was renamed to Install Date in 3.0 + [[ -n "$birthday_time" ]] && \ + { err "Config: \$birthday_time is deprecated, use \3install_time instead."; \ + install_time="$birthday_time"; } + + # Scrot dir was removed in 3.1.0. + [[ -n "$scrot_dir" ]] && scrot_dir= + + # cpu_shorthand was deprecated in 3.3.0 + [[ -n "$cpu_shorthand" ]] && \ + { err "Config: \$cpu_shorthand is deprecated, use \$cpu_brand, \$cpu_cores, and + \$cpu_speed instead."; } +} + +cache_uname() { + # Cache the output of uname so we don't + # have to spawn it multiple times. + IFS=" " read -ra uname <<< "$(uname -sr)" + + kernel_name="${uname[0]}" + kernel_version="${uname[1]}" +} + +convert_time() { + # Convert ls timestamp to 'Tue 06 Dec 2016 4:58 PM' format. + year="$1" + day="${3#0}" + + # Split time into hours/minutes. + hour="${4/:*}" + min="${4/${hour}}" + + # Get month. (Month code is used for day of week) + # Due to different versions of 'ls', the month can be 1, 01 or Jan. + case "$2" in + 1 | 01 | "Jan") month="Jan"; month_code=0 ;; + 2 | 02 | "Feb") month="Feb"; month_code=3 ;; + 3 | 03 | "Mar") month="Mar"; month_code=3 ;; + 4 | 04 | "Apr") month="Apr"; month_code=6 ;; + 5 | 05 | "May") month="May"; month_code=1 ;; + 6 | 06 | "Jun") month="Jun"; month_code=4 ;; + 7 | 07 | "Jul") month="Jul"; month_code=6 ;; + 8 | 08 | "Aug") month="Aug"; month_code=2 ;; + 9 | 09 | "Sep") month="Sep"; month_code=5 ;; + 10 | "Oct") month="Oct"; month_code=0 ;; + 11 | "Nov") month="Nov"; month_code=3 ;; + 12 | "Dec") month="Dec"; month_code=5 ;; + esac + + # Get leap year. + # Source: http://stackoverflow.com/questions/725098/leap-year-calculation + [[ "$((year % 4))" == 0 && "$((year % 100))" != 0 || "$((year % 400))" == 0 ]] && \ + [[ "$month" =~ (Jan|Feb) ]] && \ + leap_code=1 + + # Calculate day of week. + # Source: http://blog.artofmemory.com/how-to-calculate-the-day-of-the-week-4203.html + year_code="$((${year/??} + (${year/??} / 4) % 7))" + week_day="$(((year_code + month_code + 6 + day - leap_code) % 7))" + + case "$week_day" in + 0) week_day="Sun" ;; + 1) week_day="Mon" ;; + 2) week_day="Tue" ;; + 3) week_day="Wed" ;; + 4) week_day="Thu" ;; + 5) week_day="Fri" ;; + 6) week_day="Sat" ;; + esac + + # Convert 24 hour time to 12 hour time + AM/PM. + case "$install_time_format" in + "12h") + case "$hour" in + [0-9] | 0[0-9] | 1[0-1]) time="${hour/00/12}${min} AM" ;; + *) time="$((hour - 12))${min} PM" ;; + esac + ;; + *) time="$4" ;; + esac + + # Toggle showing the time. + [[ "$install_time" == "off" ]] && unset time + + # Print the install date. + printf "%s" "$week_day $day $month $year $time" +} + +get_ppid() { + # Get parent process ID of PID. + case "$os" in + "Windows") + ppid="$(ps -p "${1:-$PPID}" | awk '{printf $2}')" + ppid="${ppid/'PPID'}" + ;; + + "Linux") + ppid="$(grep -i -F "PPid:" "/proc/${1:-$PPID}/status")" + ppid="$(trim "${ppid/PPid:}")" + ;; + + *) + ppid="$(ps -p "${1:-$PPID}" -o ppid=)" + ;; + esac + + printf "%s" "$ppid" +} + +get_process_name() { + # Get PID name. + case "$os" in + "Windows") + name="$(ps -p "${1:-$PPID}" | awk '{printf $8}')" + name="${name/'COMMAND'}" + name="${name/*\/}" + ;; + + "Linux") + name="$(< "/proc/${1:-$PPID}/comm")" + ;; + + *) + name="$(ps -p "${1:-$PPID}" -o comm=)" + ;; + esac + + printf "%s" "$name" +} + +decode_url() { + decode="${1//+/ }" + printf "%b" "${decode//%/\\x}" +} + +# FINISH UP + +usage() { printf "%s" "\ +Usage: neofetch --option \"value\" --option \"value\" + +Neofetch is a CLI system information tool written in BASH. Neofetch +displays information about your system next to an image, your OS logo, +or any ASCII file of your choice. + +NOTE: Every launch flag has a config option. + +Options: + +INFO: + --disable infoname Allows you to disable an info line from appearing + in the output. + + NOTE: You can supply multiple args. eg. 'neofetch --disable cpu gpu' + + --os_arch on/off Hide/Show OS architecture. + --speed_type type Change the type of cpu speed to display. + Possible values: current, min, max, bios, + scaling_current, scaling_min, scaling_max + + NOTE: This only supports Linux with cpufreq. + + --speed_shorthand on/off Whether or not to show decimals in CPU speed. + + NOTE: This flag is not supported in systems with CPU speed less than + 1 GHz. + + --cpu_brand on/off Enable/Disable CPU brand in output. + --cpu_cores type Whether or not to display the number of CPU cores + Possible values: logical, physical, off + + NOTE: 'physical' doesn't work on BSD. + + --cpu_speed on/off Hide/Show cpu speed. + --cpu_temp C/F/off Hide/Show cpu temperature. + + NOTE: This only works on Linux and BSD. + + NOTE: For FreeBSD and NetBSD-based systems, you need to enable + coretemp kernel module. This only supports newer Intel processors. + + --distro_shorthand on/off Shorten the output of distro (tiny, on, off) + + NOTE: This option won't work in Windows (Cygwin) + + --kernel_shorthand on/off Shorten the output of kernel + + NOTE: This option won't work in BSDs (except PacBSD and PC-BSD) + + --uptime_shorthand on/off Shorten the output of uptime (tiny, on, off) + --refresh_rate on/off Whether to display the refresh rate of each monitor + Unsupported on Windows + --gpu_brand on/off Enable/Disable GPU brand in output. (AMD/NVIDIA/Intel) + --gpu_type type Which GPU to display. (all, dedicated, integrated) + + NOTE: This only supports Linux. + + --gtk_shorthand on/off Shorten output of gtk theme/icons + --gtk2 on/off Enable/Disable gtk2 theme/font/icons output + --gtk3 on/off Enable/Disable gtk3 theme/font/icons output + --shell_path on/off Enable/Disable showing \$SHELL path + --shell_version on/off Enable/Disable showing \$SHELL version + --disk_show value Which disks to display. + Possible values: '/', '/dev/sdXX', '/path/to/mount point' + + NOTE: Multiple values can be given. (--disk_show '/' '/dev/sdc1') + + --disk_subtitle type What information to append to the Disk subtitle. + Takes: name, mount, dir + + 'name' shows the disk's name (sda1, sda2, etc) + + 'mount' shows the disk's mount point (/, /mnt/Local Disk, etc) + + 'dir' shows the basename of the disks's path. (/, Local Disk, etc) + + --ip_host url URL to query for public IP + --song_shorthand on/off Print the Artist/Title on separate lines + --music_player player-name Manually specify a player to use. + Available values are listed in the config file + --install_time on/off Enable/Disable showing the time in Install Date output. + --install_time_format 12h/24h + Set time format in Install Date to be 12 hour or 24 hour. + +TEXT FORMATTING: + --colors x x x x x x Changes the text colors in this order: + title, @, underline, subtitle, colon, info + --underline on/off Enable/Disable the underline. + --underline_char char Character to use when underlining title + --bold on/off Enable/Disable bold text + +COLOR BLOCKS: + --color_blocks on/off Enable/Disable the color blocks + --block_width num Width of color blocks in spaces + --block_height num Height of color blocks in lines + --block_range num num Range of colors to print as blocks + +BARS: + --bar_char 'elapsed char' 'total char' + Characters to use when drawing bars. + --bar_border on/off Whether or not to surround the bar with '[]' + --bar_length num Length in spaces to make the bars. + --bar_colors num num Colors to make the bar. + Set in this order: elapsed, total + --cpu_display mode Bar mode. + Possible values: bar, infobar, barinfo, off + --memory_display mode Bar mode. + Possible values: bar, infobar, barinfo, off + --battery_display mode Bar mode. + Possible values: bar, infobar, barinfo, off + --disk_display mode Bar mode. + Possible values: bar, infobar, barinfo, off + +IMAGE BACKEND: + --backend backend Which image backend to use. + Possible values: 'ascii', 'caca', 'catimg', 'jp2a', 'iterm2', 'off', + 'sixel', 'tycat', 'w3m' + --source source Which image or ascii file to use. + Possible values: 'auto', 'ascii', 'wallpaper', '/path/to/img', + '/path/to/ascii', '/path/to/dir/' + --ascii source Shortcut to use 'ascii' backend. + --caca source Shortcut to use 'caca' backend. + --catimg source Shortcut to use 'catimg' backend. + --iterm2 source Shortcut to use 'iterm2' backend. + --jp2a source Shortcut to use 'jp2a' backend. + --kitty source Shortcut to use 'kitty' backend. + --pixterm source Shortcut to use 'pixterm' backend. + --sixel source Shortcut to use 'sixel' backend. + --termpix source Shortcut to use 'termpix' backend. + --tycat source Shortcut to use 'tycat' backend. + --w3m source Shortcut to use 'w3m' backend. + --off Shortcut to use 'off' backend. + + NOTE: 'source; can be any of the following: 'auto', 'ascii', 'wallpaper', '/path/to/img', + '/path/to/ascii', '/path/to/dir/' + +ASCII: + --ascii_colors x x x x x x Colors to print the ascii art + --ascii_distro distro Which Distro's ascii art to print + + NOTE: Arch and Ubuntu have 'old' logo variants. + + NOTE: Use 'arch_old' or 'ubuntu_old' to use the old logos. + + NOTE: Ubuntu has flavor variants. + + NOTE: Change this to 'Lubuntu', 'Xubuntu', 'Ubuntu-GNOME', + 'Ubuntu-Studio' or 'Ubuntu-Budgie' to use the flavors. + + NOTE: Alpine, Arch, CRUX, Debian, Gentoo, FreeBSD, Mac, NixOS, + OpenBSD, and Void have a smaller logo variant. + + NOTE: Use '{distro name}_small' to use the small variants. + + --ascii_bold on/off Whether or not to bold the ascii logo. + -L, --logo Hide the info text and only show the ascii logo. + + Possible values: bar, infobar, barinfo, off + +IMAGE: + --loop Redraw the image constantly until Ctrl+C is used. This fixes issues + in some terminals emulators when using image mode. + --size 00px | --size 00% How to size the image. + Possible values: auto, 00px, 00%, none + --crop_mode mode Which crop mode to use + Takes the values: normal, fit, fill + --crop_offset value Change the crop offset for normal mode. + Possible values: northwest, north, northeast, + west, center, east, southwest, south, southeast + + --xoffset px How close the image will be to the left edge of the + window. This only works with w3m. + --yoffset px How close the image will be to the top edge of the + window. This only works with w3m. + --bg_color color Background color to display behind transparent image. + This only works with w3m. + --gap num Gap between image and text. + + NOTE: --gap can take a negative value which will move the text + closer to the left side. + + --clean Delete cached files and thumbnails. + +SCREENSHOT: + -s, --scrot /path/to/img Take a screenshot, if path is left empty the screen- + shot function will use \$scrot_dir and \$scrot_name. + -su, --upload /path/to/img Same as --scrot but uploads the scrot to a website. + --image_host imgur/teknik Website to upload scrots to. + --scrot_cmd cmd Screenshot program to launch + +OTHER: + --config /path/to/config Specify a path to a custom config file + --config none Launch the script without a config file + --stdout Turn off all colors and disables any ASCII/image backend. + --help Print this text and exit + --version Show neofetch version + -v Display error messages. + -vv Display a verbose log for error reporting. + +DEVELOPER: + --gen-man Generate a manpage for Neofetch in your PWD. (Requires GNU help2man) + + +Report bugs to https://github.com/dylanaraps/neofetch/issues + +" +exit 1 +} + +get_args() { + # Check the commandline flags early for '--config'. + [[ "$*" != *--config* ]] && get_user_config + + while [[ "$1" ]]; do + case "$1" in + # Info + "--os_arch") os_arch="$2" ;; + "--cpu_cores") cpu_cores="$2" ;; + "--cpu_speed") cpu_speed="$2" ;; + "--speed_type") speed_type="$2" ;; + "--speed_shorthand") speed_shorthand="$2" ;; + "--distro_shorthand") distro_shorthand="$2" ;; + "--kernel_shorthand") kernel_shorthand="$2" ;; + "--uptime_shorthand") uptime_shorthand="$2" ;; + "--cpu_brand") cpu_brand="$2" ;; + "--gpu_brand") gpu_brand="$2" ;; + "--gpu_type") gpu_type="$2" ;; + "--refresh_rate") refresh_rate="$2" ;; + "--gtk_shorthand") gtk_shorthand="$2" ;; + "--gtk2") gtk2="$2" ;; + "--gtk3") gtk3="$2" ;; + "--shell_path") shell_path="$2" ;; + "--shell_version") shell_version="$2" ;; + "--ip_host") public_ip_host="$2" ;; + "--song_shorthand") song_shorthand="$2" ;; + "--music_player") music_player="$2" ;; + "--install_time") install_time="$2" ;; + "--install_time_format") install_time_format="$2" ;; + "--cpu_temp") + cpu_temp="$2" + [[ "$cpu_temp" == "on" ]] && cpu_temp="C" + ;; + + "--disk_subtitle") disk_subtitle="$2" ;; + "--disk_show") + unset disk_show + for arg in "$@"; do + case "$arg" in + "--disk_show") ;; + "-"*) break ;; + *) disk_show+=("$arg") ;; + esac + done + ;; + + "--disable") + for func in "$@"; do + case "$func" in + "--disable") continue ;; + "-"*) break ;; + *) + ((bash_version >= 4)) && func="${func,,}" + unset -f "get_$func" + ;; + esac + done + ;; + + # Text Colors + "--colors") + unset colors + for arg in "$2" "$3" "$4" "$5" "$6" "$7"; do + case "$arg" in + "-"*) break ;; + *) colors+=("$arg") ;; + esac + done + colors+=(7 7 7 7 7 7) + ;; + + # Text Formatting + "--underline") underline_enabled="$2" ;; + "--underline_char") underline_char="$2" ;; + "--bold") bold="$2" ;; + + # Color Blocks + "--color_blocks") color_blocks="$2" ;; + "--block_range") block_range=("$2" "$3") ;; + "--block_width") block_width="$2" ;; + "--block_height") block_height="$2" ;; + + # Bars + "--bar_char") + bar_char_elapsed="$2" + bar_char_total="$3" + ;; + + "--bar_border") bar_border="$2" ;; + "--bar_length") bar_length="$2" ;; + "--bar_colors") + bar_color_elapsed="$2" + bar_color_total="$3" + ;; + + "--cpu_display") cpu_display="$2" ;; + "--memory_display") memory_display="$2" ;; + "--battery_display") battery_display="$2" ;; + "--disk_display") disk_display="$2" ;; + + # Image backend + "--backend") image_backend="$2" ;; + "--source") image_source="$2" ;; + "--ascii" | "--caca" | "--catimg" | "--jp2a" | "--iterm2" | "--off" | "--pixterm" |\ + "--sixel" | "--termpix" | "--tycat" | "--w3m" | "--kitty") + image_backend="${1/--}" + case "$2" in + "-"* | "") ;; + *) image_source="$2" ;; + esac + ;; + + # Image options + "--loop") image_loop="on" ;; + "--image_size" | "--size") image_size="$2" ;; + "--crop_mode") crop_mode="$2" ;; + "--crop_offset") crop_offset="$2" ;; + "--xoffset") xoffset="$2" ;; + "--yoffset") yoffset="$2" ;; + "--background_color" | "--bg_color") background_color="$2" ;; + "--gap") gap="$2" ;; + "--clean") + [[ -d "$thumbnail_dir" ]] && rm -rf "$thumbnail_dir" + rm -rf "/Library/Caches/neofetch/" + rm -rf "/tmp/neofetch/" + exit + ;; + + "--ascii_colors") + unset ascii_colors + for arg in "$2" "$3" "$4" "$5" "$6" "$7"; do + case "$arg" in + "-"*) break ;; + *) ascii_colors+=("$arg") + esac + done + ascii_colors+=(7 7 7 7 7 7) + ;; + + "--ascii_distro") + image_backend="ascii" + ascii_distro="$2" + case "$2" in "-"* | "") ascii_distro="$distro" ;; esac + ;; + + "--ascii_bold") ascii_bold="$2" ;; + "--logo" | "-L") + image_backend="ascii" + print_info() { info line_break; } + ;; + + # Screenshot + "--scrot" | "-s") + scrot_args "$@" + ;; + "--upload" | "-su") + scrot_upload="on" + scrot_args "$@" + ;; + + "--image_host") image_host="$2" ;; + "--scrot_cmd") scrot_cmd="$2" ;; + + # Other + "--config") + case "$2" in + "none" | "off" | "") ;; + *) + config_file="$(get_full_path "$2")" + get_user_config + ;; + esac + ;; + "--stdout") stdout="on" ;; + "-v") verbose="on" ;; + "-vv") set -x; verbose="on" ;; + "--help") usage ;; + "--version") + printf "%s\\n" "Neofetch $version" + exit 1 + ;; + "--gen-man") + help2man -n "A fast, highly customizable system info script" \ + -N ./neofetch -o neofetch.1 + exit 1 + ;; + + "--travis") + print_info() { + info title + info underline + + info "OS" distro + info "Host" model + info "Kernel" kernel + info "Uptime" uptime + info "Packages" packages + info "Shell" shell + info "Resolution" resolution + info "DE" de + info "WM" wm + info "WM Theme" wm_theme + info "Theme" theme + info "Icons" icons + info "Terminal" term + info "Terminal Font" term_font + info "CPU" cpu + info "GPU" gpu + info "GPU Driver" gpu_driver + info "Memory" memory + + info "CPU Usage" cpu_usage + info "Disk" disk + info "Battery" battery + info "Font" font + info "Song" song + info "Local IP" local_ip + info "Public IP" public_ip + info "Users" users + info "Install Date" install_date + + info line_break + info cols + info line_break + + # Testing. + prin "prin" + prin "prin" "prin" + + # Testing no subtitles. + info uptime + info disk + } + + refresh_rate="on" + shell_version="on" + cpu_display="infobar" + memory_display="infobar" + disk_display="infobar" + cpu_temp="C" + ;; + esac + + shift + done +} + main() { cache_uname get_os