mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2024-08-14 22:46:53 +00:00
feat(quickget): add support for gabeeOS qtile and budgie editions
This commit is contained in:
parent
2a6f75b1f5
commit
c8ef3e97e3
1 changed files with 17 additions and 3 deletions
20
quickget
20
quickget
|
@ -430,6 +430,10 @@ function releases_gabeeos() {
|
|||
echo latest
|
||||
}
|
||||
|
||||
function editions_gabeeos() {
|
||||
echo qtile budgie
|
||||
}
|
||||
|
||||
function releases_garuda() {
|
||||
echo latest
|
||||
}
|
||||
|
@ -1430,8 +1434,18 @@ function get_gabeeos() {
|
|||
local URL=""
|
||||
local TMPURL=""
|
||||
|
||||
TMPURL=$(wget -q -S -O- --max-redirect=0 "https://sourceforge.net/projects/gabeeos/files/latest/download" 2>&1 | grep -i Location | cut -d' ' -f4)
|
||||
URL=${TMPURL%\?*}
|
||||
case ${EDITION} in
|
||||
qtile)
|
||||
ISO="gabeeOSLinux-Qtile-x86_64-6.1.21_1-20230405.iso"
|
||||
URL="https://sourceforge.net/projects/gabeeoslinux/files/Distro/Qtile/beta/${ISO}/download"
|
||||
;;
|
||||
budgie)
|
||||
ISO="gabeeos-live-BUDGIE-CALAMARES-x86_64-6.0.10_1-20221206.iso"
|
||||
URL="https://sourceforge.net/projects/gabeeoslinux/files/Distro/Budgie/${ISO}/download"
|
||||
;;
|
||||
esac
|
||||
#https://sourceforge.net/projects/gabeeoslinux/files/Distro/Budgie/gabeeos-live-BUDGIE-CALAMARES-x86_64-6.0.10_1-20221206.iso/download
|
||||
#https://sourceforge.net/projects/gabeeoslinux/files/Distro/Qtile/beta/gabeeOSLinux-Qtile-x86_64-6.1.21_1-20230405.iso/download
|
||||
echo "${URL} ${HASH}"
|
||||
}
|
||||
|
||||
|
@ -1444,7 +1458,7 @@ function get_garuda() {
|
|||
ISO=${EDITION}/latest.iso
|
||||
|
||||
HASH="$(wget -q -O- "${URL}/${ISO}.sha256" | cut -d' ' -f1)"
|
||||
echo "${URL}/${ISO} ${HASH}"
|
||||
echo "${URL} ${HASH}"
|
||||
}
|
||||
|
||||
function get_gentoo() {
|
||||
|
|
Loading…
Reference in a new issue