XeroLinux

This commit is contained in:
zenobit 2023-03-07 01:31:42 +01:00 committed by Martin Wimpress
parent dc313fe383
commit 031660cb4b

View File

@ -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=""