From 031660cb4b9e178ede661ca67ecfe2603b498d15 Mon Sep 17 00:00:00 2001 From: zenobit Date: Tue, 7 Mar 2023 01:31:42 +0100 Subject: [PATCH] XeroLinux --- quickget | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/quickget b/quickget index df0817c..55843b1 100755 --- a/quickget +++ b/quickget @@ -78,6 +78,7 @@ function pretty_name() { vanillaos) PRETTY_NAME="Vanilla OS";; void) PRETTY_NAME="Void Linux";; vxlinux) PRETTY_NAME="VX Linux";; + xerolinux) PRETTY_NAME="XeroLinux";; zorin) PRETTY_NAME="Zorin OS";; *) PRETTY_NAME="${SIMPLE_NAME^}";; esac @@ -240,6 +241,7 @@ function os_support() { void \ vxlinux \ windows \ + xerolinux \ xubuntu \ zorin } @@ -736,6 +738,10 @@ function languages_windows() { Ukrainian) } +function releases_xerolinux() { + echo kde +} + function releases_zorin() { echo 16 } @@ -1842,6 +1848,17 @@ function get_void() { echo "${URL}/${ISO} ${HASH}" } + +function get_xerolinux() { + local HASH="" + local URL="" + local ISO="xerolinux-2022.12-x86_64.iso" + local URL="https://sourceforge.net/projects/xerolinux/files/Releases" + + HASH=$(wget -q -O- "${URL}/${ISO}.sha256" | cut -d' ' -f1) + echo "${URL}/${ISO} ${HASH}" +} + function get_zorin() { local EDITION="${1:-}" local HASH=""