mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2026-06-14 17:36:40 +00:00
19 lines
557 B
Text
19 lines
557 B
Text
INFO=" |Zorin OS|Ubuntu||https://zorin.com/os/|Alternative to Windows and macOS designed to make your computer faster, more powerful, secure, and privacy-respecting.";;
|
|
|
|
function releases_zorin() {
|
|
echo 17 16
|
|
}
|
|
|
|
function editions_zorin() {
|
|
echo core64 lite64 education64 edulite64
|
|
}
|
|
|
|
function get_zorin() {
|
|
local EDITION="${1:-}"
|
|
local HASH=""
|
|
local ISO=""
|
|
local URL=""
|
|
|
|
URL=$(curl -Lfs "https://zrn.co/${RELEASE}${EDITION}" -w %{url_effective} -o /this/is/a/nonexistent/directory/$RANDOM/$RANDOM)
|
|
echo "${URL} ${HASH}"
|
|
}
|