Add Athena OS

This commit is contained in:
zenobit 2023-09-14 15:32:11 +02:00
parent c68261be13
commit 80ad43840e

View file

@ -37,6 +37,7 @@ function pretty_name() {
archlinux) PRETTY_NAME="Arch Linux";;
archcraft) PRETTY_NAME="Archcraft";;
arcolinux) PRETTY_NAME="Arco Linux";;
atheanos) PRETTY_NAME="Athena OS";;
biglinux) PRETTY_NAME="BigLinux";;
blendos) PRETTY_NAME="BlendOS";;
cachyos) PRETTY_NAME="CachyOS";;
@ -192,6 +193,7 @@ function os_support() {
archlinux \
archcraft \
arcolinux \
athenaos \
batocera \
biglinux \
blendos \
@ -304,6 +306,11 @@ function editions_arcolinux() {
echo large small
}
function releases_athenaos() {
echo 23.06.23
}
function releases_batocera() {
echo 32 33 34
}
@ -1136,6 +1143,16 @@ function get_arcolinux() {
echo "${URL}/${ISO} ${HASH}"
}
function get_athenaos() {
local HASH=""
local URL=""
local TMPURL=""
local ISO="athena-2023.06.23-x86_64.iso"
TMPURL=$(wget -q -S -O- --max-redirect=0 "https://sourceforge.net/projects/athena-iso/files/v23.06.23/${ISO}/download" 2>&1 | grep -i Location | cut -d' ' -f4)
URL=${TMPURL%\?*}
echo "${URL} ${HASH}"
}
function get_batocera() {
local HASH=""
local URL="https://mirrors.o2switch.fr/batocera/x86_64/stable/last"