DistroHopper/public/linuxmint
2026-05-27 17:00:06 +02:00

36 lines
949 B
Text

# Template file for 'linuxmint'
OSNAME="linuxmint"
PRETTY="Linux Mint"
LOGO=" "
ICON="linuxmint.svg"
ICON_ONLINE="https://distrowatch.com/images/yvzhuwbpy/mint.png"
CATEGORY="Beginner, Desktop, Live Medium"
BASEDOF="Ubuntu"
DESCRIPTION="Designed to work out of the box and comes fully equipped with the apps most people need"
HOMEPAGE="https://linuxmint.com"
CREDENTIALS="-"
GPG=""
RSS=""
DW=""
MAGNET=""
CHAT=""
RELEASES="21.1 20.3 20.2 20.1 19.3 19.2 19.1 18.3 18.2 18.1"
EDITIONS="cinnamon mate xfce"
QEMU_ARCH="amd64"
releases_() {
web_pipe "https://community.linuxmint.com/iso" | grep -oP 'mint-[0-9]+\.[0-9]+' | sed 's/mint-//' | sort -Vu | head -n 10
}
editions_() {
echo cinnamon mate xfce
}
get_() {
local HASH=""
local ISO="linuxmint-${RELEASE}-${EDITION}-64bit.iso"
local URL="https://pub.linuxmint.io/stable/${RELEASE}"
HASH=$(web_pipe "${URL}/sha256sum.txt" | grep "${ISO}" | cut -d' ' -f1)
echo "${URL}/${ISO} ${HASH}"
}