Add BigLinux

This commit is contained in:
Ruscher 2023-09-13 18:28:23 -03:00 committed by Martin Wimpress
parent 0c8e1a5205
commit 35a6588825
1 changed files with 15 additions and 0 deletions

View File

@ -61,6 +61,7 @@ function pretty_name() {
archlinux) PRETTY_NAME="Arch Linux";;
archcraft) PRETTY_NAME="Archcraft";;
arcolinux) PRETTY_NAME="Arco Linux";;
biglinux) PRETTY_NAME="BigLinux";;
blendos) PRETTY_NAME="BlendOS";;
cachyos) PRETTY_NAME="CachyOS";;
centos-stream) PRETTY_NAME="CentOS Stream";;
@ -211,6 +212,7 @@ function os_support() {
archcraft \
arcolinux \
batocera \
biglinux \
blendos \
bodhi \
bunsenlabs \
@ -418,6 +420,10 @@ function editions_arcolinux() {
echo large small
}
function releases_biglinux() {
echo kde
}
function releases_blendos() {
# Pull the rss feed
@ -1270,6 +1276,15 @@ function get_bunsenlabs() {
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() {
local HASH=""