# Template file for 'rebornos' OSNAME="rebornos" PRETTY="RebornOS" LOGO="" ICON="rebornos.svg" ICON_ONLINE="https://distrowatch.com/images/yvzhuwbpy/rebornos.png" CATEGORY="Beginner" BASEDOF="Arch" DESCRIPTION="Aiming to make Arch Linux as user friendly as possible by providing interface solutions to things you normally have to do in a terminal" HOMEPAGE="https://rebornos.org" CREDENTIALS="-" GPG="" RSS="" DW="" MAGNET="" CHAT="" RELEASES="latest" QEMU_ARCH="amd64" releases_() { echo latest } get_() { local JSON ISO HASH JSON=$(web_pipe "https://meta.cdn.soulharsh007.dev/RebornOS-ISO?format=json") if ! echo "$JSON" | jq . > /dev/null 2>&1; then echo "JSON not valid!" >&2 echo "DEBUG: JSON response:" >&2 echo "$JSON" >&2 fi URL=$(echo "$JSON" | jq -r ".url") ISO=$(echo "${URL}" | cut -d'/' -f3) HASH=$(echo "$JSON" | jq -r ".md5") echo "${URL} ${HASH}" }