mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2026-06-14 17:36:40 +00:00
13 lines
522 B
Text
13 lines
522 B
Text
INFO="RebornOS|Arch||https://rebornos.org/|Aiming to make Arch Linux as user friendly as possible by providing interface solutions to things you normally have to do in a terminal.";;
|
|
|
|
function releases_rebornos() {
|
|
echo latest
|
|
}
|
|
|
|
function get_rebornos() {
|
|
local ISO=""
|
|
local HASH=""
|
|
ISO=$(wget -q -O- "https://meta.cdn.soulharsh007.dev/RebornOS-ISO?format=json" | jq -r ".url")
|
|
HASH=$(wget -q -O- "https://meta.cdn.soulharsh007.dev/RebornOS-ISO?format=json" | jq -r ".md5")
|
|
echo "${ISO} ${HASH}"
|
|
}
|