Add BigLinux
This commit is contained in:
parent
0c8e1a5205
commit
35a6588825
15
quickget
15
quickget
|
@ -61,6 +61,7 @@ function pretty_name() {
|
||||||
archlinux) PRETTY_NAME="Arch Linux";;
|
archlinux) PRETTY_NAME="Arch Linux";;
|
||||||
archcraft) PRETTY_NAME="Archcraft";;
|
archcraft) PRETTY_NAME="Archcraft";;
|
||||||
arcolinux) PRETTY_NAME="Arco Linux";;
|
arcolinux) PRETTY_NAME="Arco Linux";;
|
||||||
|
biglinux) PRETTY_NAME="BigLinux";;
|
||||||
blendos) PRETTY_NAME="BlendOS";;
|
blendos) PRETTY_NAME="BlendOS";;
|
||||||
cachyos) PRETTY_NAME="CachyOS";;
|
cachyos) PRETTY_NAME="CachyOS";;
|
||||||
centos-stream) PRETTY_NAME="CentOS Stream";;
|
centos-stream) PRETTY_NAME="CentOS Stream";;
|
||||||
|
@ -211,6 +212,7 @@ function os_support() {
|
||||||
archcraft \
|
archcraft \
|
||||||
arcolinux \
|
arcolinux \
|
||||||
batocera \
|
batocera \
|
||||||
|
biglinux \
|
||||||
blendos \
|
blendos \
|
||||||
bodhi \
|
bodhi \
|
||||||
bunsenlabs \
|
bunsenlabs \
|
||||||
|
@ -418,6 +420,10 @@ function editions_arcolinux() {
|
||||||
echo large small
|
echo large small
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function releases_biglinux() {
|
||||||
|
echo kde
|
||||||
|
}
|
||||||
|
|
||||||
function releases_blendos() {
|
function releases_blendos() {
|
||||||
|
|
||||||
# Pull the rss feed
|
# Pull the rss feed
|
||||||
|
@ -1270,6 +1276,15 @@ function get_bunsenlabs() {
|
||||||
echo "${URL}/${ISO} ${HASH}"
|
echo "${URL}/${ISO} ${HASH}"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function get_biglinux() {
|
||||||
|
local HASH=""
|
||||||
|
local ISO=""
|
||||||
|
local URL="https://iso.biglinux.com.br/"
|
||||||
|
ISO=$(grep -Eo 'biglinux_[0-9]{4}(-[0-9]{2}){2}_k[0-9]{2,3}.iso' <(wget -q -O- ${URL}) | sort -u | tail -n2 | head -n1)
|
||||||
|
HASH=$(curl -s ${URL}${ISO}.md5 | grep -Eo '[[:alnum:]]{32}')
|
||||||
|
echo "${URL}${ISO} ${HASH}"
|
||||||
|
}
|
||||||
|
|
||||||
function get_blendos() {
|
function get_blendos() {
|
||||||
|
|
||||||
local HASH=""
|
local HASH=""
|
||||||
|
|
Loading…
Reference in New Issue