Fix --ascii_distro ubuntu-studio
The ascii/distro directory has an ubuntu-studio file, which is documented in the --help text, but when I try to use that option, it falls back to the default Ubuntu logo. This change adds a case for Ubuntu-Studio to set ascii_file and the colors based on the logo at https://ubuntustudio.org.
This commit is contained in:
parent
ea580434aa
commit
2094c134ce
1 changed files with 5 additions and 0 deletions
5
neofetch
5
neofetch
|
@ -3287,6 +3287,11 @@ get_distro_colors() {
|
|||
ascii_file="ubuntu_old"
|
||||
;;
|
||||
|
||||
"Ubuntu-Studio")
|
||||
set_colors 6 7
|
||||
ascii_file="ubuntu-studio"
|
||||
;;
|
||||
|
||||
"Ubuntu"*)
|
||||
set_colors 1 7 3
|
||||
ascii_file="ubuntu"
|
||||
|
|
Loading…
Reference in a new issue