From 5aacff5e5746d553d79e00941e6a0999b5998cda Mon Sep 17 00:00:00 2001 From: Dylan Date: Sun, 28 Feb 2016 17:02:05 +1100 Subject: [PATCH] Remove pointless check --- neofetch | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/neofetch b/neofetch index 2988b1dc..ca630ff7 100755 --- a/neofetch +++ b/neofetch @@ -1618,11 +1618,7 @@ getwallpaper () { # Ascii {{{ getascii () { - # If the ascii file doesn't exist - # fallback to showing distro ascii. - [ ! -f "$ascii" ] && ascii="distro" - - if [ "$ascii" == "distro" ]; then + if [ ! -f "$ascii" ] || [ "$ascii" == "distro" ]; then # Lowercase the distro name if [ "$version" -le 3 ]; then ascii=$(tr '[:upper:]' '[:lower:]' <<< "$ascii_distro")