From a4bf721014bef8cdd099a802abe07b81abee2333 Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Fri, 17 Jul 2020 16:56:13 +0300 Subject: [PATCH] neofetch: Fix CI (long lines) --- neofetch | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/neofetch b/neofetch index 738b7a7d..b72a55d2 100755 --- a/neofetch +++ b/neofetch @@ -3819,7 +3819,8 @@ image_backend() { *) err "Image: Unknown image backend specified '$image_backend'." err "Image: Valid backends are: 'ascii', 'caca', 'chafa', 'jp2a', 'iterm2', 'kitty', - 'off', 'sixel', 'pot', 'pixterm', 'termpix', 'tycat', 'w3m')" + 'off', 'sixel', 'pot', 'pixterm', 'termpix', 'tycat', + 'w3m')" err "Image: Falling back to ascii mode." print_ascii ;; @@ -5071,8 +5072,8 @@ get_args() { # Image backend "--backend") image_backend="$2" ;; "--source") image_source="$2" ;; - "--ascii" | "--caca" | "--chafa" | "--jp2a" | "--iterm2" | "--off" | "--pot" | "--pixterm" |\ - "--sixel" | "--termpix" | "--tycat" | "--w3m" | "--kitty") + "--ascii" | "--caca" | "--chafa" | "--jp2a" | "--iterm2" | "--off" | "--pot" |\ + "--pixterm" | "--sixel" | "--termpix" | "--tycat" | "--w3m" | "--kitty") image_backend="${1/--}" case $2 in "-"* | "") ;;