mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2024-08-14 22:46:53 +00:00
parent
f127cca13b
commit
0390dcf652
1 changed files with 19 additions and 0 deletions
19
quickget
19
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=""
|
||||
|
|
Loading…
Reference in a new issue