mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2024-08-14 22:46:53 +00:00
Add Athena OS
This commit is contained in:
parent
c68261be13
commit
80ad43840e
1 changed files with 17 additions and 0 deletions
17
quickget
17
quickget
|
@ -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"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue