mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2026-06-14 17:36:40 +00:00
19 lines
587 B
Text
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}"
|
|
}
|