mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2026-06-14 17:36:40 +00:00
21 lines
603 B
Text
21 lines
603 B
Text
# 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 '&' '
|
|
' | 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}"
|
|
}
|
|
|