From 484a306831416d99ec78bb3b38df1d96e0e0589f Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Mon, 2 Jan 2017 17:30:43 +1100 Subject: [PATCH] Ascii: Add _value variants to get_distro_colors() --- neofetch | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/neofetch b/neofetch index de9bb8f6..ea4a5d5b 100755 --- a/neofetch +++ b/neofetch @@ -2489,6 +2489,16 @@ get_distro_colors() { # # $ascii_distro is the same as $distro. case "$ascii_distro" in + "arch_small") + set_colors 4 7 1 + ascii_file="arch_small" + ;; + + "arch_old") + set_colors 4 7 1 + ascii_file="arch_old" + ;; + "Arch"*) set_colors 4 7 1 ascii_file="arch" @@ -2634,6 +2644,11 @@ get_distro_colors() { ascii_file="salentos" ;; + "crux_small") + set_colors 4 5 7 6 + ascii_file="crux_small" + ;; + "CRUX"*) set_colors 4 5 7 6 ascii_file="crux" @@ -2684,6 +2699,11 @@ get_distro_colors() { ascii_file="debian" ;; + "ubuntu_old") + set_colors 1 7 3 + ascii_file="ubuntu_old" + ;; + "Ubuntu"*) set_colors 1 7 3 ascii_file="ubuntu" @@ -2800,11 +2820,21 @@ get_distro_colors() { ascii_file="devuan" ;; + "gentoo_small") + set_colors 5 7 + ascii_file="gentoo_small" + ;; + "Gentoo"*) set_colors 5 7 ascii_file="gentoo" ;; + "openbsd_small") + set_colors 3 7 6 1 8 + ascii_file="openbsd_small" + ;; + "OpenBSD"*) set_colors 3 7 6 1 8 ascii_file="openbsd"