Skip to content

Commit

Permalink
Add Artix Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
zen0bit committed Oct 19, 2023
1 parent 265be79 commit ffb622f
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions quickget
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ function pretty_name() {
archlinux) PRETTY_NAME="Arch Linux";;
archcraft) PRETTY_NAME="Archcraft";;
arcolinux) PRETTY_NAME="Arco Linux";;
artix) PRETTY_NAME="Artix Linux";;
blendos) PRETTY_NAME="BlendOS";;
cachyos) PRETTY_NAME="CachyOS";;
centos-stream) PRETTY_NAME="CentOS Stream";;
Expand Down Expand Up @@ -186,6 +187,7 @@ function os_support() {
archlinux \
archcraft \
arcolinux \
artix \
batocera \
blendos \
bodhi \
Expand Down Expand Up @@ -304,6 +306,14 @@ function editions_arcolinux() {
echo large small
}

function releases_artix() {
echo stable
}

function editions_artix() {
echo base-dinit base-openrc base-runit base-s6 cinnamon-dinit cinnamon-openrc cinnamon-runit cinnamon-s6 lxde-dinit lxde-openrc lxde-runit lxde-s6 lxqt-dinit lxqt-openrc lxqt-runit lxqt-s6 mate-dinit mate-openrc mate-runit mate-s6 plasma-dinit plasma-openrc plasma-runit plasma-s6 xfce-dinit xfce-openrc xfce-runit xfce-s6 community-gtk-openrc community-qt-openrc
}

function releases_blendos() {

# Pull the rss feed
Expand Down Expand Up @@ -1161,6 +1171,17 @@ function get_arcolinux() {
echo "${URL}/${ISO} ${HASH}"
}

function get_artix() {
local EDITION="${1:-}"
local HASH=""
local ISO=""
local URL="https://iso.artixlinux.org/iso"
DATE=$(wget -q -O- ${URL}/sha256sums | cut -d'-' -f4 | head -1)
ISO="artix-${EDITION}-${DATE}-x86_64.iso"
HASH=$(wget -q -O- ${URL}/sha256sums | grep "${ISO}")
echo "${URL}/${ISO} ${HASH}"
}

function get_bunsenlabs() {
local HASH=""
local ISO="beryllium-1-amd64.hybrid.iso"
Expand Down

0 comments on commit ffb622f

Please sign in to comment.