DEFVER=1
get_github_releases "fastfetch-cli/fastfetch"
if [ "${ACTION}" != "prettylist" ]; then

case $(UPSTREAM_CODENAME) in
    buster|bullseye|focal) 
        URL=$(grep "browser_download_url.*Linux\.deb\"" "${CACHE_FILE}" | head -n1 | cut -d'"' -f4)
        ARCHS_SUPPORTED="amd64"
        ;;
    *)
        URL=$(grep "browser_download_url.*linux-${HOST_ARCH}\.deb\"" "${CACHE_FILE}" | head -n1 | cut -d'"' -f4)
        ARCHS_SUPPORTED="amd64 arm64 riscv64"
        ;;
esac

    VERSION_PUBLISHED="$(echo "${URL}" | cut -d'/' -f8)"
fi
PRETTY_NAME="FastFetch"
WEBSITE="https://github.com/fastfetch-cli/fastfetch"
SUMMARY="Fastfetch is a neofetch-like tool for fetching system information and displaying them in a pretty way. It is written in pure c, with performance and customizability in mind."
