XeroLinux
This commit is contained in:
parent
8ee0d3a207
commit
b133c647b5
17
quickget
17
quickget
@ -77,6 +77,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
|
||||
@ -235,6 +236,7 @@ function os_support() {
|
||||
void \
|
||||
vxlinux \
|
||||
windows \
|
||||
xerolinux \
|
||||
xubuntu \
|
||||
zorin
|
||||
}
|
||||
@ -723,6 +725,10 @@ function languages_windows() {
|
||||
Ukrainian)
|
||||
}
|
||||
|
||||
function releases_xerolinux() {
|
||||
echo kde
|
||||
}
|
||||
|
||||
function releases_zorin() {
|
||||
echo 16
|
||||
}
|
||||
@ -1780,6 +1786,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=""
|
||||
|
Loading…
Reference in New Issue
Block a user