diff --git a/quickget b/quickget index 4ea03d1..f09168b 100755 --- a/quickget +++ b/quickget @@ -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=""