From 4a5d1b7e8afe1f3b0330160e1a3704e7ee1f771d Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Mon, 2 Jan 2017 16:55:08 +1100 Subject: [PATCH] Ascii: Fix format --- neofetch | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/neofetch b/neofetch index fdd8b937..de9bb8f6 100755 --- a/neofetch +++ b/neofetch @@ -2756,7 +2756,7 @@ get_distro_colors() { ;; "BunsenLabs"*) - set_colors 0 7 + set_colors fg 7 ascii_file="bunsenlabs" ;; @@ -2960,29 +2960,29 @@ get_distro_colors() { "Linux") set_colors fg 8 3 - ascii_file="linix" + ascii_file="linux" ;; *) case "$kernel_name" in "Linux") - ascii_file="linux" set_colors fg 8 3 + ascii_file="linux" ;; *"BSD") - ascii_file="bsd" set_colors 1 7 4 3 6 + ascii_file="bsd" ;; "GNU"*) - ascii_file="gnu" set_colors fg + ascii_file="gnu" ;; "SunOS") - ascii_file="solaris" set_colors 3 + ascii_file="solaris" ;; esac ;;