Ascii: Fix format

This commit is contained in:
Dylan Araps 2017-01-02 16:55:08 +11:00
parent fd6dd9fd6b
commit 4a5d1b7e8a
1 changed files with 6 additions and 6 deletions

View File

@ -2756,7 +2756,7 @@ get_distro_colors() {
;; ;;
"BunsenLabs"*) "BunsenLabs"*)
set_colors 0 7 set_colors fg 7
ascii_file="bunsenlabs" ascii_file="bunsenlabs"
;; ;;
@ -2960,29 +2960,29 @@ get_distro_colors() {
"Linux") "Linux")
set_colors fg 8 3 set_colors fg 8 3
ascii_file="linix" ascii_file="linux"
;; ;;
*) *)
case "$kernel_name" in case "$kernel_name" in
"Linux") "Linux")
ascii_file="linux"
set_colors fg 8 3 set_colors fg 8 3
ascii_file="linux"
;; ;;
*"BSD") *"BSD")
ascii_file="bsd"
set_colors 1 7 4 3 6 set_colors 1 7 4 3 6
ascii_file="bsd"
;; ;;
"GNU"*) "GNU"*)
ascii_file="gnu"
set_colors fg set_colors fg
ascii_file="gnu"
;; ;;
"SunOS") "SunOS")
ascii_file="solaris"
set_colors 3 set_colors 3
ascii_file="solaris"
;; ;;
esac esac
;; ;;