mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2026-06-14 17:36:40 +00:00
21 lines
819 B
Text
21 lines
819 B
Text
# Template file for 'artixlinux'
|
|
OSNAME="artixlinux"
|
|
PRETTY="Artix Linux"
|
|
BASEDOF="Arch"
|
|
DESCRIPTION="The Art of Linux. Simple. Fast. Systemd-free"
|
|
HOMEPAGE="https://artixlinux.org"
|
|
CREDENTIALS="-"
|
|
|
|
|
|
RELEASES="20250407"
|
|
EDITIONS="xfce-s6 xfce-runit xfce-openrc xfce-dinit plasma-s6 plasma-runit plasma-openrc plasma-dinit mate-s6 mate-runit mate-openrc mate-dinit lxqt-s6 lxqt-runit lxqt-openrc lxqt-dinit lxde-s6 lxde-runit lxde-openrc lxde-dinit community-qt community-gtk cinnamon-s6 cinnamon-runit cinnamon-openrc cinnamon-dinit base-s6 base-runit base-openrc base-dinit"
|
|
|
|
function get_() {
|
|
local HASH=""
|
|
local ISO=""
|
|
local URL="https://iso.artixlinux.org/iso"
|
|
ISO="artix-${EDITION}-${RELEASE}-x86_64.iso"
|
|
HASH=$(web_pipe "${URL}/sha256sums" | grep "${ISO}")
|
|
echo "${URL}/${ISO} ${HASH}"
|
|
}
|
|
|