DistroHopper/OS/arch
zen0bit c087af2323 tmp
2024-04-10 21:20:44 +02:00

14 lines
435 B
Text

INFO=" |Arch Linux|Independent||https://archlinux.org/|Lightweight and flexible Linux® distribution that tries to Keep It Simple.";;
function releases_arch() {
echo latest
}
function get_arch() {
local HASH=""
local ISO="archlinux-x86_64.iso"
local URL="https://mirror.rackspace.com/archlinux/iso/latest"
HASH=$(wget -q -O- "${URL}/sha256sums.txt" | grep "${ISO}" | cut_1)
echo "${URL}/${ISO} ${HASH}"
}