neofetch: remove unneeded quotes

This commit is contained in:
Dylan Araps 2019-10-30 12:39:26 +00:00
parent efc289463c
commit e8763c9009
No known key found for this signature in database
GPG Key ID: 46D62DD9F1DE636E
1 changed files with 13 additions and 11 deletions

View File

@ -9543,10 +9543,10 @@ EOF
# Overwrite distro colors if '$ascii_colors' doesn't # Overwrite distro colors if '$ascii_colors' doesn't
# equal 'distro'. # equal 'distro'.
if [[ "${ascii_colors[0]}" != "distro" ]]; then [[ ${ascii_colors[0]} != distro ]] && {
color_text="off" color_text=off
set_colors "${ascii_colors[@]}" set_colors "${ascii_colors[@]}"
fi }
} }
main() { main() {
@ -9557,21 +9557,21 @@ main() {
eval "$config" eval "$config"
get_args "$@" get_args "$@"
[[ "$verbose" != "on" ]] && exec 2>/dev/null [[ $verbose != on ]] && exec 2>/dev/null
get_simple "$@" get_simple "$@"
get_distro get_distro
get_bold get_bold
get_distro_ascii get_distro_ascii
[[ "$stdout" == "on" ]] && stdout [[ $stdout == on ]] && stdout
# Minix doesn't support these sequences. # Minix doesn't support these sequences.
if [[ "$TERM" != "minix" && "$stdout" != "on" ]]; then [[ $TERM != minix && $stdout != on ]] && {
# If the script exits for any reason, unhide the cursor. # If the script exits for any reason, unhide the cursor.
trap 'printf "\e[?25h\e[?7h"' EXIT trap 'printf "\e[?25h\e[?7h"' EXIT
# Hide the cursor and disable line wrap. # Hide the cursor and disable line wrap.
printf '\e[?25l\e[?7l' printf '\e[?25l\e[?7l'
fi }
image_backend image_backend
get_cache_dir get_cache_dir
@ -9581,17 +9581,19 @@ main() {
# w3m-img: Draw the image a second time to fix # w3m-img: Draw the image a second time to fix
# rendering issues in specific terminal emulators. # rendering issues in specific terminal emulators.
[[ "$image_backend" == *w3m* ]] && display_image [[ $image_backend == *w3m* ]] && display_image
# Add neofetch info to verbose output. # Add neofetch info to verbose output.
err "Neofetch command: $0 $*" err "Neofetch command: $0 $*"
err "Neofetch version: $version" err "Neofetch version: $version"
# Show error messages. [[ $verbose == on ]] && printf %b "$err" >&2
[[ "$verbose" == "on" ]] && printf "%b" "$err" >&2
# If `--loop` was used, constantly redraw the image. # If `--loop` was used, constantly redraw the image.
while [[ "$image_loop" == "on" && "$image_backend" == "w3m" ]]; do display_image; sleep 1; done while [[ $image_loop == on && $image_backend == w3m ]]; do
display_image
sleep 1
done
return 0 return 0
} }