added BlendOS

pull/692/head
Phil Clifford 2 years ago committed by Martin Wimpress
parent 564a252585
commit a99ca998f5
  1. 13
      quickget

@ -36,6 +36,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";;
blendos) PRETTY_NAME="BlendOS";;
cachyos) PRETTY_NAME="CachyOS";; cachyos) PRETTY_NAME="CachyOS";;
centos-stream) PRETTY_NAME="CentOS Stream";; centos-stream) PRETTY_NAME="CentOS Stream";;
dragonflybsd) PRETTY_NAME="DragonFlyBSD";; dragonflybsd) PRETTY_NAME="DragonFlyBSD";;
@ -172,6 +173,7 @@ function os_support() {
archcraft \ archcraft \
arcolinux \ arcolinux \
batocera \ batocera \
blendos \
cachyos \ cachyos \
centos-stream \ centos-stream \
debian \ debian \
@ -263,6 +265,10 @@ function editions_arcolinux() {
echo large small echo large small
} }
function releases_blendos() {
echo 23.01
}
function releases_cachyos() { function releases_cachyos() {
echo 230121 echo 230121
} }
@ -991,6 +997,13 @@ function get_arcolinux() {
echo "${URL}/${ISO} ${HASH}" echo "${URL}/${ISO} ${HASH}"
} }
function get_blendos() {
local HASH=""
local URL="$(wget -q https://api.github.com/repos/blend-os/blendOS/releases -O- |grep 'browser_download_url'|grep ${RELEASE} | grep -o '\"http.*\.iso\"'| cut -d\" -f 2| head -1)"
HASH=$(wget -q -O- "${URL}.sha256sum" | cut -d' ' -f1)
echo "${URL} ${HASH}"
}
function get_batocera() { function get_batocera() {
local HASH="" local HASH=""
local URL="https://mirrors.o2switch.fr/batocera/x86_64/stable/last" local URL="https://mirrors.o2switch.fr/batocera/x86_64/stable/last"

Loading…
Cancel
Save