From d3aa525839255588a75bf1c9b8f27e7e79dfcab9 Mon Sep 17 00:00:00 2001 From: BBaoVanC Date: Sat, 26 Dec 2020 16:40:56 -0600 Subject: [PATCH] Limit jp2a output height to 50 --- nekofetch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nekofetch b/nekofetch index 72237ed..3b6c1ee 100755 --- a/nekofetch +++ b/nekofetch @@ -23,7 +23,7 @@ esac url=$(curl -fsSL "$imgurl" | jq -r ".url") curl -fsSLo "$tmpfile.jpg" "$url" -jp2a "$tmpfile.jpg" > "$tmpfile" +jp2a --height=50 "$tmpfile.jpg" > "$tmpfile" neofetch --source "$tmpfile" rm "$tmpfile" "$tmpfile.jpg"