mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2024-08-14 22:46:53 +00:00
Add GabeeOS
This commit is contained in:
parent
7c2b62199b
commit
7020ff9171
1 changed files with 16 additions and 0 deletions
16
quickget
16
quickget
|
@ -50,6 +50,7 @@ function pretty_name() {
|
|||
freebsd) PRETTY_NAME="FreeBSD";;
|
||||
freedos) PRETTY_NAME="FreeDOS";;
|
||||
fvoid) PRETTY_NAME="F-Void";;
|
||||
gabeeos) PRETTY_NAME="gabeeOS Linux";;
|
||||
garuda) PRETTY_NAME="Garuda Linux";;
|
||||
ghostbsd) PRETTY_NAME="GhostBSD";;
|
||||
holoiso) PRETTY_NAME="Steam OS HoloISO";;
|
||||
|
@ -206,6 +207,7 @@ function os_support() {
|
|||
freebsd \
|
||||
freedos \
|
||||
fvoid \
|
||||
gabeeos \
|
||||
garuda \
|
||||
gentoo \
|
||||
ghostbsd \
|
||||
|
@ -434,6 +436,10 @@ function releases_fvoid() {
|
|||
echo latest
|
||||
}
|
||||
|
||||
function releases_gabeeos() {
|
||||
echo latest
|
||||
}
|
||||
|
||||
function releases_garuda() {
|
||||
echo latest
|
||||
}
|
||||
|
@ -1439,6 +1445,16 @@ function get_fvoid() {
|
|||
echo "${URL} ${HASH}"
|
||||
}
|
||||
|
||||
function get_gabeeos() {
|
||||
local HASH=""
|
||||
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%\?*}
|
||||
echo "${URL} ${HASH}"
|
||||
}
|
||||
|
||||
function get_garuda() {
|
||||
local EDITION="${1:-}"
|
||||
local HASH=""
|
||||
|
|
Loading…
Reference in a new issue