From 7dc93266c9249184419e03bc4a5ebab244b39692 Mon Sep 17 00:00:00 2001 From: Martin Wimpress Date: Fri, 23 Jan 2026 23:29:46 +0000 Subject: [PATCH] fix(quickget): remove Athena OS (no longer getting updates) --- quickget | 23 +---------------------- 1 file changed, 1 insertion(+), 22 deletions(-) diff --git a/quickget b/quickget index f32b4e7..332136b 100755 --- a/quickget +++ b/quickget @@ -27,7 +27,6 @@ function os_info() { archcraft) INFO="Archcraft|-|https://archcraft.io/|Yet another minimal Linux distribution, based on Arch Linux.";; archlinux) INFO="Arch Linux|-|https://archlinux.org/|Lightweight and flexible Linux® distribution that tries to Keep It Simple.";; artixlinux) INFO="Artix Linux|-|https://artixlinux.org/|The Art of Linux. Simple. Fast. Systemd-free.";; - athenaos) INFO="Athena OS|-|https://athenaos.org/|Offer a different experience than the most used pentesting distributions by providing only tools that fit with the user needs and improving the access to hacking resources and learning materials.";; batocera) INFO="Batocera|-|https://batocera.org/|Retro-gaming distribution with the aim of turning any computer/nano computer into a gaming console during a game or permanently.";; bazzite) INFO="Bazzite|-|https://github.com/ublue-os/bazzite/|Container native gaming and a ready-to-game SteamOS like.";; biglinux) INFO="BigLinux|-|https://www.biglinux.com.br/|Is the right choice if you want to have an easy and enriching experience with Linux. It has been perfected over more than 19 years, following our motto: 'In search of the perfect system'.";; @@ -424,7 +423,6 @@ function os_support() { archcraft \ archlinux \ artixlinux \ - athenaos \ batocera \ bazzite \ biglinux \ @@ -568,11 +566,6 @@ function editions_artixlinux() { echo $(web_pipe "https://mirror1.artixlinux.org/iso/" | grep "artix-" | cut -d'"' -f2 | grep -v sig | sed 's/artix-//' | sed 's/-[0-9]\{8\}-x86_64.iso//' | sort -u) } -function releases_athenaos() { - #shellcheck disable=SC2046,SC2005 - echo $(web_pipe "https://api.github.com/repos/Athena-OS/athena/releases" | grep 'download_url' | grep rolling | cut -d'/' -f8 | sort -u) -} - function releases_batocera() { #shellcheck disable=SC2046,SC2005 echo $(web_pipe "https://mirrors.o2switch.fr/batocera/x86_64/stable/" | grep ^\> "${CONF_FILE}";; openindiana) echo "boot=\"legacy\"" >> "${CONF_FILE}" @@ -1630,20 +1623,6 @@ function get_artixlinux() { echo "${URL}/${ISO} ${HASH}" } -function get_athenaos() { - local HASH="" - local URL="https://github.com/Athena-OS/athena/releases/download/${RELEASE}" - local ISO="" - # Newer releases (v23.11+) use "athenaos-rolling" naming, older ones use "athena-rolling" - if web_check "${URL}/athenaos-rolling-x86_64.iso"; then - ISO="athenaos-rolling-x86_64.iso" - else - ISO="athena-rolling-x86_64.iso" - fi - HASH=$(web_pipe "${URL}/${ISO}.sha256" | cut -d' ' -f1) - echo "${URL}/${ISO} ${HASH}" -} - function get_batocera() { local HASH="" local ISO=""