mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2024-08-14 22:46:53 +00:00
XeroLinux
This commit is contained in:
parent
dc313fe383
commit
031660cb4b
1 changed files with 17 additions and 0 deletions
17
quickget
17
quickget
|
@ -78,6 +78,7 @@ function pretty_name() {
|
||||||
vanillaos) PRETTY_NAME="Vanilla OS";;
|
vanillaos) PRETTY_NAME="Vanilla OS";;
|
||||||
void) PRETTY_NAME="Void Linux";;
|
void) PRETTY_NAME="Void Linux";;
|
||||||
vxlinux) PRETTY_NAME="VX Linux";;
|
vxlinux) PRETTY_NAME="VX Linux";;
|
||||||
|
xerolinux) PRETTY_NAME="XeroLinux";;
|
||||||
zorin) PRETTY_NAME="Zorin OS";;
|
zorin) PRETTY_NAME="Zorin OS";;
|
||||||
*) PRETTY_NAME="${SIMPLE_NAME^}";;
|
*) PRETTY_NAME="${SIMPLE_NAME^}";;
|
||||||
esac
|
esac
|
||||||
|
@ -240,6 +241,7 @@ function os_support() {
|
||||||
void \
|
void \
|
||||||
vxlinux \
|
vxlinux \
|
||||||
windows \
|
windows \
|
||||||
|
xerolinux \
|
||||||
xubuntu \
|
xubuntu \
|
||||||
zorin
|
zorin
|
||||||
}
|
}
|
||||||
|
@ -736,6 +738,10 @@ function languages_windows() {
|
||||||
Ukrainian)
|
Ukrainian)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function releases_xerolinux() {
|
||||||
|
echo kde
|
||||||
|
}
|
||||||
|
|
||||||
function releases_zorin() {
|
function releases_zorin() {
|
||||||
echo 16
|
echo 16
|
||||||
}
|
}
|
||||||
|
@ -1842,6 +1848,17 @@ function get_void() {
|
||||||
echo "${URL}/${ISO} ${HASH}"
|
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() {
|
function get_zorin() {
|
||||||
local EDITION="${1:-}"
|
local EDITION="${1:-}"
|
||||||
local HASH=""
|
local HASH=""
|
||||||
|
|
Loading…
Reference in a new issue