gabeeOS
This commit is contained in:
parent
fe09849191
commit
06ad3fc220
16
quickget
16
quickget
@ -47,6 +47,7 @@ function pretty_name() {
|
|||||||
freebsd) PRETTY_NAME="FreeBSD";;
|
freebsd) PRETTY_NAME="FreeBSD";;
|
||||||
freedos) PRETTY_NAME="FreeDOS";;
|
freedos) PRETTY_NAME="FreeDOS";;
|
||||||
fvoid) PRETTY_NAME="F-Void";;
|
fvoid) PRETTY_NAME="F-Void";;
|
||||||
|
gabeeos) PRETTY_NAME="gabeeOS Linux";;
|
||||||
garuda) PRETTY_NAME="Garuda Linux";;
|
garuda) PRETTY_NAME="Garuda Linux";;
|
||||||
ghostbsd) PRETTY_NAME="GhostBSD";;
|
ghostbsd) PRETTY_NAME="GhostBSD";;
|
||||||
kdeneon) PRETTY_NAME="KDE Neon";;
|
kdeneon) PRETTY_NAME="KDE Neon";;
|
||||||
@ -194,6 +195,7 @@ function os_support() {
|
|||||||
freebsd \
|
freebsd \
|
||||||
freedos \
|
freedos \
|
||||||
fvoid \
|
fvoid \
|
||||||
|
gabeeos \
|
||||||
garuda \
|
garuda \
|
||||||
gentoo \
|
gentoo \
|
||||||
ghostbsd \
|
ghostbsd \
|
||||||
@ -388,6 +390,10 @@ function releases_fvoid() {
|
|||||||
echo latest
|
echo latest
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function releases_gabeeos() {
|
||||||
|
echo latest
|
||||||
|
}
|
||||||
|
|
||||||
function releases_garuda() {
|
function releases_garuda() {
|
||||||
echo latest
|
echo latest
|
||||||
}
|
}
|
||||||
@ -1324,6 +1330,16 @@ function get_fvoid() {
|
|||||||
echo "${URL} ${HASH}"
|
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() {
|
function get_garuda() {
|
||||||
local EDITION="${1:-}"
|
local EDITION="${1:-}"
|
||||||
local HASH=""
|
local HASH=""
|
||||||
|
Loading…
Reference in New Issue
Block a user