Skip to content

Commit

Permalink
Add Athena OS
Browse files Browse the repository at this point in the history
  • Loading branch information
zen0bit committed Nov 10, 2023
1 parent d65d192 commit 8d88fba
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions quickget
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ function pretty_name() {
archlinux) PRETTY_NAME="Arch Linux";;
archcraft) PRETTY_NAME="Archcraft";;
arcolinux) PRETTY_NAME="Arco Linux";;
atheanos) PRETTY_NAME="Athena OS";;
blendos) PRETTY_NAME="BlendOS";;
cachyos) PRETTY_NAME="CachyOS";;
centos-stream) PRETTY_NAME="CentOS Stream";;
Expand Down Expand Up @@ -211,6 +212,7 @@ function os_support() {
archlinux \
archcraft \
arcolinux \
athenaos \
batocera \
blendos \
bodhi \
Expand Down Expand Up @@ -417,6 +419,10 @@ function editions_arcolinux() {
echo large small
}

function releases_athenaos() {
echo 23.06.23
}

function releases_blendos() {

# Pull the rss feed
Expand Down Expand Up @@ -1276,6 +1282,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_bunsenlabs() {
local HASH=""
local ISO="beryllium-1-amd64.hybrid.iso"
Expand Down

0 comments on commit 8d88fba

Please sign in to comment.