mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2024-08-14 22:46:53 +00:00
Add Linux Lite
Older releases not included
This commit is contained in:
parent
5e977e05ee
commit
a273941834
1 changed files with 15 additions and 0 deletions
15
quickget
15
quickget
|
@ -60,6 +60,7 @@ function pretty_name() {
|
|||
holoiso) PRETTY_NAME="Steam OS 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";;
|
||||
|
@ -231,6 +232,7 @@ function os_support() {
|
|||
kdeneon \
|
||||
kolibrios \
|
||||
kubuntu \
|
||||
linuxlite \
|
||||
linuxmint \
|
||||
lmde \
|
||||
mageia \
|
||||
|
@ -542,6 +544,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
|
||||
}
|
||||
|
@ -1681,6 +1687,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=""
|
||||
|
|
Loading…
Reference in a new issue