mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2024-08-14 22:46:53 +00:00
VX-Linux
This commit is contained in:
parent
6a612bd104
commit
ba7621944d
1 changed files with 19 additions and 0 deletions
19
quickget
19
quickget
|
@ -73,6 +73,7 @@ function pretty_name() {
|
|||
ubuntustudio) PRETTY_NAME="Ubuntu Studio";;
|
||||
ubuntu-unity) PRETTY_NAME="Ubuntu Unity";;
|
||||
void) PRETTY_NAME="Void Linux";;
|
||||
vxlinux) PRETTY_NAME="VX Linux";;
|
||||
zorin) PRETTY_NAME="Zorin OS";;
|
||||
*) PRETTY_NAME="${SIMPLE_NAME^}";;
|
||||
esac
|
||||
|
@ -226,6 +227,7 @@ function os_support() {
|
|||
ubuntustudio \
|
||||
ubuntu-unity \
|
||||
void \
|
||||
vxlinux \
|
||||
windows \
|
||||
xubuntu \
|
||||
zorin
|
||||
|
@ -644,6 +646,10 @@ function editions_void() {
|
|||
echo glibc musl xfce-glibc xfce-musl
|
||||
}
|
||||
|
||||
function releases_vxlinux() {
|
||||
echo 6.1 5.0 4.2 4.1 4.0
|
||||
}
|
||||
|
||||
function releases_windows() {
|
||||
echo 8 10 11
|
||||
}
|
||||
|
@ -1697,6 +1703,19 @@ function get_zorin() {
|
|||
echo "${URL} ${HASH}"
|
||||
}
|
||||
|
||||
function get_vxlinux() {
|
||||
local HASH=""
|
||||
local ISO=""
|
||||
local URL="https://github.com/dessington/vx-linux/releases/download/${RELEASE}"
|
||||
|
||||
if [ "$RELEASE" == "4.0" ]; then
|
||||
ISO="vx-linux-4.0-qt.iso"
|
||||
else
|
||||
ISO="vx-linux-${RELEASE}.iso"
|
||||
fi
|
||||
echo "${URL}/${ISO} ${HASH}"
|
||||
}
|
||||
|
||||
function unattended_windows() {
|
||||
cat << 'EOF' > "${1}"
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
|
Loading…
Reference in a new issue