mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2026-06-14 17:36:40 +00:00
17 lines
537 B
Text
17 lines
537 B
Text
INFO="CachyOS|Arch||https://cachyos.org/|Designed to deliver lightning-fast speeds and stability, ensuring a smooth and enjoyable computing experience every time you use it.";;
|
|
|
|
function releases_cachyos() {
|
|
echo 230813
|
|
}
|
|
|
|
function editions_cachyos() {
|
|
echo kde gnome
|
|
}
|
|
|
|
function get_cachyos() {
|
|
local HASH=""
|
|
local ISO="cachyos-${EDITION}-linux-${RELEASE}.iso"
|
|
local URL="https://mirror.cachyos.org/ISO/${EDITION}/${RELEASE}"
|
|
HASH=$(wget -q -O- "${URL}/${ISO}.sha256" | cut_1)
|
|
echo "${URL}/${ISO} ${HASH}"
|
|
}
|