mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2024-08-14 22:46:53 +00:00
Add BigLinux
This commit is contained in:
parent
2ff9789315
commit
f167d7b888
1 changed files with 15 additions and 0 deletions
15
quickget
15
quickget
|
@ -37,6 +37,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";;
|
||||||
|
@ -185,6 +186,7 @@ function os_support() {
|
||||||
archcraft \
|
archcraft \
|
||||||
arcolinux \
|
arcolinux \
|
||||||
batocera \
|
batocera \
|
||||||
|
biglinux \
|
||||||
blendos \
|
blendos \
|
||||||
cachyos \
|
cachyos \
|
||||||
centos-stream \
|
centos-stream \
|
||||||
|
@ -292,6 +294,10 @@ function releases_batocera() {
|
||||||
echo 32 33 34
|
echo 32 33 34
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function releases_biglinux() {
|
||||||
|
echo kde
|
||||||
|
}
|
||||||
|
|
||||||
function releases_blendos() {
|
function releases_blendos() {
|
||||||
local RLIST
|
local RLIST
|
||||||
RLIST=$(curl -s https://api.github.com/repos/blend-os/blendOS/releases |grep tag_name | grep -o -E '[[:digit:]]+\.[[:digit:]]+' | tr ' \r\n' ' ')
|
RLIST=$(curl -s https://api.github.com/repos/blend-os/blendOS/releases |grep tag_name | grep -o -E '[[:digit:]]+\.[[:digit:]]+' | tr ' \r\n' ' ')
|
||||||
|
@ -1089,6 +1095,15 @@ function get_batocera() {
|
||||||
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 EDITION="${1:-}"
|
local EDITION="${1:-}"
|
||||||
local HASH=""
|
local HASH=""
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue