Add Linux Lite

This commit is contained in:
zenobit 2023-09-30 11:15:37 +02:00 committed by Martin Wimpress
parent 39de883c40
commit be81b6892f

View File

@ -50,6 +50,7 @@ function pretty_name() {
holoiso) PRETTY_NAME="HoloISO";;
kdeneon) PRETTY_NAME="KDE Neon";;
kolibrios) PRETTY_NAME="KolibriOS";;
linuxlite) PRETTY_NAME="Linux Lite";;
linuxmint) PRETTY_NAME="Linux Mint";;
lmde) PRETTY_NAME="Linux Mint Debian Edition";;
mageia) PRETTY_NAME="Mageia";;
@ -208,6 +209,7 @@ function os_support() {
kdeneon \
kolibrios \
kubuntu \
linuxlite \
linuxmint \
lmde \
mageia \
@ -460,6 +462,10 @@ function releases_kolibrios() {
echo latest
}
function releases_linuxlite() {
echo 6.0 6.2 6.4 6.6
}
function releases_linuxmint(){
echo 20.2 20.3 21 21.1 21.2
}
@ -1442,6 +1448,15 @@ function get_kolibrios() {
echo "${URL}/${ISO} ${HASH}"
}
function get_linuxlite() {
local HASH=""
local ISO="linux-lite-${RELEASE}-64bit.iso"
local URL="https://sourceforge.net/projects/linux-lite/files/${RELEASE}"
HASH=$(wget -q -O- "${URL}/${ISO}.sha256" | cut -d' ' -f1)
echo "${URL}/${ISO} ${HASH}"
}
function get_linuxmint() {
local EDITION="${1:-}"
local HASH=""