📦 Primtux Thanks to @DaffyDuke
This commit is contained in:
parent
411d87d63e
commit
d5dc137016
22
quickget
22
quickget
|
@ -108,6 +108,7 @@ function pretty_name() {
|
|||
parrotsec) PRETTY_NAME="Parrot Security";;
|
||||
peppermint) PRETTY_NAME="PeppermintOS";;
|
||||
popos) PRETTY_NAME="Pop!_OS";;
|
||||
primtux) PRETTY_NAME="Primtux";;
|
||||
reactos) PRETTY_NAME="ReactOS";;
|
||||
rebornos) PRETTY_NAME="RebornOS";;
|
||||
rockylinux) PRETTY_NAME="Rocky Linux";;
|
||||
|
@ -282,6 +283,7 @@ function os_support() {
|
|||
parrotsec \
|
||||
popos \
|
||||
porteus \
|
||||
primtux \
|
||||
reactos \
|
||||
rebornos \
|
||||
rockylinux \
|
||||
|
@ -379,6 +381,7 @@ function os_homepages(){
|
|||
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/";;
|
||||
|
@ -834,6 +837,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
|
||||
}
|
||||
|
@ -2290,6 +2301,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=""
|
||||
|
|
Loading…
Reference in New Issue