Skip to content

Commit

Permalink
Add Linux Lite
Browse files Browse the repository at this point in the history
  • Loading branch information
zen0bit authored and flexiondotorg committed Oct 18, 2023
1 parent 39de883 commit be81b68
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions quickget
Original file line number Diff line number Diff line change
Expand Up @@ -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";;
Expand Down Expand Up @@ -208,6 +209,7 @@ function os_support() {
kdeneon \
kolibrios \
kubuntu \
linuxlite \
linuxmint \
lmde \
mageia \
Expand Down Expand Up @@ -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
}
Expand Down Expand Up @@ -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=""
Expand Down

0 comments on commit be81b68

Please sign in to comment.