Skip to content

Commit

Permalink
Add Zephix /No hash/
Browse files Browse the repository at this point in the history
  • Loading branch information
zen0bit committed Oct 18, 2023
1 parent be81b68 commit 16aaf13
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions quickget
Original file line number Diff line number Diff line change
Expand Up @@ -250,6 +250,7 @@ function os_support() {
windows \
xerolinux \
xubuntu \
zephix \
zorin
}

Expand Down Expand Up @@ -750,6 +751,14 @@ function releases_xerolinux() {
echo kde
}

function releases_zephix() {
echo 7
}

function editions_zephix() {
echo base cinnamon gnome kde lxde lxqt mate xfce
}

function releases_zorin() {
echo 16
}
Expand Down Expand Up @@ -1953,6 +1962,19 @@ function get_xerolinux() {
echo "${URL}/${ISO} ${HASH}"
}

function get_zephix() {
local EDITION="${1:-}"
local HASH=""
local URL="https://sourceforge.net/projects/zephix-linux/files/ISO"

case ${EDITION} in
base) ISO="Zephix-${RELEASE}R-x86_64.iso";;
*) ISO="Zephix-${RELEASE}R-${EDITION}.iso";;
esac
#HASH=$(wget -q -O- "${URL}/${ISO}.sha256" | cut -d' ' -f1)
echo "${URL}/${ISO} ${HASH}"
}

function get_zorin() {
local EDITION="${1:-}"
local HASH=""
Expand Down

0 comments on commit 16aaf13

Please sign in to comment.