mirror of
https://github.com/danbulant/nekofetch
synced 2026-06-19 22:31:13 +00:00
36 lines
943 B
Bash
Executable file
36 lines
943 B
Bash
Executable file
#!/bin/sh
|
|
|
|
required="neofetch jp2a jq curl"
|
|
|
|
for req in $required; do
|
|
! command -v "$req" > /dev/null 2>&1 && echo "$req not found!" && exit 1
|
|
done
|
|
|
|
|
|
tmpfile="$(mktemp -p /tmp nekofetchXXXXXXXX)"
|
|
|
|
case "$1" in
|
|
"--nsfw"|"nsfw"|"-n"|"n")
|
|
echo "Getting a nsfw image"
|
|
imgurl="https://nekos.life/api/v2/img/cum_jpg"
|
|
;;
|
|
"--sfw"|"sfw"|"-s"|"s")
|
|
echo "Getting a sfw image"
|
|
imgurl="https://nekos.life/api/v2/img/neko"
|
|
;;
|
|
*)
|
|
echo "Could not interpret as either sfw or nsfw. Defaulting to sfw."
|
|
imgurl="https://nekos.life/api/v2/img/neko"
|
|
;;
|
|
esac
|
|
|
|
echo "$2" | grep -qE '^[0-9]+$' && height="$2" || height="$(($(stty size | awk '{print $1}') - 5))"
|
|
echo "Using height $height"
|
|
|
|
url=$(curl -fsSL "$imgurl" | jq -r ".url")
|
|
|
|
curl -fsSLo "$tmpfile.jpg" "$url"
|
|
jp2a --height="$height" "$tmpfile.jpg" > "$tmpfile"
|
|
neofetch --source "$tmpfile"
|
|
|
|
rm "$tmpfile" "$tmpfile.jpg"
|