Skip to content

Commit

Permalink
Add Primtux
Browse files Browse the repository at this point in the history
  • Loading branch information
zen0bit committed Dec 27, 2023
1 parent 45851f7 commit 4e147aa
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 @@ -117,6 +117,7 @@ function pretty_name() {
oraclelinux) PRETTY_NAME="Oracle Linux";;
peppermint) PRETTY_NAME="PeppermintOS";;
popos) PRETTY_NAME="Pop!_OS";;
primtux) PRETTY_NAME="Primtux";;
pureos) PRETTY_NAME="PureOS";;
reactos) PRETTY_NAME="ReactOS";;
rebornos) PRETTY_NAME="RebornOS";;
Expand Down Expand Up @@ -302,6 +303,7 @@ function os_support() {
peppermint \
popos \
porteus \
primtux \
reactos \
rebornos \
rockylinux \
Expand Down Expand Up @@ -407,6 +409,7 @@ function os_homepage(){
peppermint) HOMEPAGE="https://peppermintos.com/";;
popos) HOMEPAGE="https://pop.system76.com/";;
porteus) HOMEPAGE="http://www.porteus.org/";;
primtux) HOMEPAGE="https://primtux.fr/";;
reactos) HOMEPAGE="https://reactos.org/";;
rebornos) HOMEPAGE="https://rebornos.org/";;
rockylinux) HOMEPAGE="https://rockylinux.org/";;
Expand Down Expand Up @@ -928,6 +931,14 @@ function editions_porteus() {
echo cinnamon gnome kde lxde lxqt mate openbox xfce
}

function releases_primtux() {
echo 7
}

function editions_primtux() {
echo 2022-10
}

function releases_reactos() {
echo latest
}
Expand Down Expand Up @@ -2557,6 +2568,17 @@ function get_porteus() {
echo "${URL}/${ISO} ${HASH}"
}

function get_primtux() {
local HASH=""
local URL=""
local ISO=""

ISO="PrimTux${RELEASE}-amd64-${EDITION}.iso"
URL="https://sourceforge.net/projects/primtux/files/Distribution"
HASH=$(wget -q -O- "${URL}/${ISO}.md5" | grep "${ISO}" | cut -d' ' -f1)
echo "${URL}/${ISO} ${HASH}"
}

function get_reactos() {
local HASH=""
local URL=""
Expand Down

0 comments on commit 4e147aa

Please sign in to comment.