diff --git a/quickget b/quickget index 108bf65..e5ab7fb 100755 --- a/quickget +++ b/quickget @@ -47,6 +47,7 @@ function pretty_name() { kdeneon) PRETTY_NAME="KDE Neon";; kolibrios) PRETTY_NAME="KolibriOS";; linuxmint) PRETTY_NAME="Linux Mint";; + lmde) PRETTY_NAME="Linux Mint Debian Edition";; mxlinux) PRETTY_NAME="MX Linux";; netboot) PRETTY_NAME="netboot.xyz";; netbsd) PRETTY_NAME="NetBSD";; @@ -183,6 +184,7 @@ function os_support() { kolibrios \ kubuntu \ linuxmint \ + lmde \ manjaro \ mxlinux \ netboot \ @@ -366,6 +368,13 @@ function editions_linuxmint(){ echo cinnamon mate xfce } +function editions_lmde(){ + echo cinnamon +} +function releases_lmde(){ + echo 5 +} + function releases_mxlinux(){ echo 21.1 } @@ -1089,6 +1098,16 @@ function get_linuxmint() { echo "${URL}/${ISO} ${HASH}" } +function get_lmde() { + local EDITION="${1:-}" + local HASH="" + local ISO="lmde-${RELEASE}-${EDITION}-64bit.iso" + local URL="https://mirror.bytemark.co.uk/linuxmint/debian" + + HASH=$(wget -q -O- "${URL}/sha256sum.txt" | grep "${ISO}" | cut -d' ' -f1) + echo "${URL}/${ISO} ${HASH}" +} + function get_macos() { local BOARD_ID="" local CWD=""