Skip to content

Commit

Permalink
Add F-Void linux
Browse files Browse the repository at this point in the history
  • Loading branch information
zen0bit committed Mar 7, 2023
1 parent c69fa6b commit 92201ba
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions quickget
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ function pretty_name() {
endeavouros) PRETTY_NAME="EndeavourOS";;
freebsd) PRETTY_NAME="FreeBSD";;
freedos) PRETTY_NAME="FreeDOS";;
fvoid) PRETTY_NAME="F-Void";;
garuda) PRETTY_NAME="Garuda Linux";;
ghostbsd) PRETTY_NAME="GhostBSD";;
kdeneon) PRETTY_NAME="KDE Neon";;
Expand Down Expand Up @@ -182,6 +183,7 @@ function os_support() {
fedora \
freebsd \
freedos \
fvoid \
garuda \
gentoo \
ghostbsd \
Expand Down Expand Up @@ -348,6 +350,10 @@ function releases_freedos() {
echo 1.2 1.3
}

function releases_fvoid() {
echo latest
}

function releases_garuda() {
echo latest
}
Expand Down Expand Up @@ -1159,6 +1165,16 @@ function get_freedos() {
echo "${URL}/${ISO} ${HASH}"
}

function get_fvoid() {
local HASH=""
local URL=""
local TMPURL=""

TMPURL=$(wget -q -S -O- --max-redirect=0 "https://sourceforge.net/projects/f-void/files/latest/download" 2>&1 | grep -i Location | cut -d' ' -f4)
URL=${TMPURL%\?*}
echo "${URL} ${HASH}"
}

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

0 comments on commit 92201ba

Please sign in to comment.