mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2026-06-14 09:32:21 +00:00
39 lines
1.1 KiB
Text
39 lines
1.1 KiB
Text
# Template file for 'vanillaos'
|
|
OSNAME="vanillaos"
|
|
PRETTY="Vanilla OS"
|
|
LOGO=" "
|
|
ICON="vanilla.svg"
|
|
ICON_ONLINE="https://distrowatch.com/images/yvzhuwbpy/vanilla.png"
|
|
CATEGORY="Desktop, Immutable, Live Medium"
|
|
BASEDOF="Ubuntu"
|
|
DESCRIPTION="Designed to be a reliable and productive operating system for your daily work"
|
|
HOMEPAGE="https://vanillaos.org"
|
|
CREDENTIALS="-"
|
|
GPG=""
|
|
RSS=""
|
|
DW=""
|
|
MAGNET=""
|
|
CHAT=""
|
|
|
|
RELEASES="22.10-r8 22.10-r7.5 22.10-r7 22.10-r6 22.10-r5 22.10-r4 22.10-r3 22.10-r2 22.10-r1 22.10"
|
|
QEMU_ARCH="amd64"
|
|
|
|
releases_() {
|
|
#shellcheck disable=SC2046,SC2005
|
|
web_pipe "https://api.github.com/repos/Vanilla-OS/live-iso/releases" | grep 'download_url' | cut -d'/' -f8 | sort -ru
|
|
}
|
|
|
|
get_() {
|
|
local HASH=""
|
|
local HASH_URL=""
|
|
local ISO=""
|
|
ISO=$(web_pipe "https://api.github.com/repos/Vanilla-OS/live-iso/releases" | grep 'download_url' | grep "${RELEASE}" | head -n 1 | cut -d'"' -f4)
|
|
HASH_URL="${ISO//.iso/.sha256.txt}"
|
|
HASH=$(web_pipe "${HASH_URL}" | cut -d' ' -f1)
|
|
echo "${ISO} ${HASH}"
|
|
}
|
|
|
|
config_() {
|
|
## Minimum is 50G for abroot, but a 64GB is allocated to give some headroom
|
|
echo "disk_size=\"64G\"" >> "${CONF_FILE}"
|
|
}
|