DistroHopper/OS/linuxmint
zen0bit c087af2323 tmp
2024-04-10 21:20:44 +02:00

19 lines
587 B
Text

INFO="Linux Mint|Debian,Ubuntu||https://linuxmint.com/|Designed to work out of the box and comes fully equipped with the apps most people need.";;
function releases_linuxmint(){
echo 21.2 21.1 21 20.3 20.2
}
function editions_linuxmint(){
echo cinnamon mate xfce
}
function get_linuxmint() {
local EDITION="${1:-}"
local HASH=""
local ISO="linuxmint-${RELEASE}-${EDITION}-64bit.iso"
local URL="https://mirror.bytemark.co.uk/linuxmint/stable/${RELEASE}"
HASH=$(wget -q -O- "${URL}/sha256sum.txt" | grep "${ISO}" | cut_1)
echo "${URL}/${ISO} ${HASH}"
}