mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2026-06-14 17:36:40 +00:00
26 lines
847 B
Text
26 lines
847 B
Text
cachyos
|
|
|
|
cachyos latest desktop: https://cdn77.cachyos.org/ISO/desktop/250422/cachyos-desktop-linux-250422.iso
|
|
cachyos latest handheld: https://cdn77.cachyos.org/ISO/handheld/250422/cachyos-handheld-linux-250422.iso
|
|
|
|
# Template file for 'cachyos'
|
|
OSNAME="cachyos"
|
|
PRETTY="CachyOS"
|
|
BASEDOF="Arch"
|
|
DESCRIPTION="Designed to deliver lightning-fast speeds and stability, ensuring a smooth and enjoyable computing experience every time you use it"
|
|
HOMEPAGE="https://cachyos.org"
|
|
CREDENTIALS="-"
|
|
|
|
|
|
RELEASES="latest"
|
|
EDITIONS="handheld desktop"
|
|
|
|
function get_() {
|
|
local HASH=""
|
|
local URL=""
|
|
URL="$(web_pipe "https://cachyos.org/download/" | tr '&' '\n' | grep "ISO/${EDITION}" | grep -v 'iso.sha' | grep -v 'iso.sig' | cut -d';' -f2)"
|
|
HASH=$(web_pipe "${URL}.sha256" | cut -d' ' -f1)
|
|
echo "${URL} ${HASH}"
|
|
}
|
|
|
|
|