mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2024-08-14 22:46:53 +00:00
SteamOS
This commit is contained in:
parent
7a87d5ac7e
commit
6e9405a42f
1 changed files with 16 additions and 0 deletions
16
quickget
16
quickget
|
@ -64,6 +64,7 @@ function pretty_name() {
|
||||||
reactos) PRETTY_NAME="ReactOS";;
|
reactos) PRETTY_NAME="ReactOS";;
|
||||||
rebornos) PRETTY_NAME="RebornOS";;
|
rebornos) PRETTY_NAME="RebornOS";;
|
||||||
rockylinux) PRETTY_NAME="Rocky Linux";;
|
rockylinux) PRETTY_NAME="Rocky Linux";;
|
||||||
|
holoiso) PRETTY_NAME="HoloISO";;
|
||||||
truenas-core) PRETTY_NAME="TrueNAS Core";;
|
truenas-core) PRETTY_NAME="TrueNAS Core";;
|
||||||
truenas-scale) PRETTY_NAME="TrueNAS Scale";;
|
truenas-scale) PRETTY_NAME="TrueNAS Scale";;
|
||||||
ubuntu-budgie) PRETTY_NAME="Ubuntu Budgie";;
|
ubuntu-budgie) PRETTY_NAME="Ubuntu Budgie";;
|
||||||
|
@ -216,6 +217,7 @@ function os_support() {
|
||||||
siduction \
|
siduction \
|
||||||
slackware \
|
slackware \
|
||||||
solus \
|
solus \
|
||||||
|
holoiso \
|
||||||
tails \
|
tails \
|
||||||
truenas-core \
|
truenas-core \
|
||||||
truenas-scale \
|
truenas-scale \
|
||||||
|
@ -545,6 +547,10 @@ function editions_solus() {
|
||||||
echo Budgie GNOME MATE Plasma
|
echo Budgie GNOME MATE Plasma
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function releases_holoiso() {
|
||||||
|
echo 4.0
|
||||||
|
}
|
||||||
|
|
||||||
function releases_tails() {
|
function releases_tails() {
|
||||||
echo stable
|
echo stable
|
||||||
}
|
}
|
||||||
|
@ -1592,6 +1598,16 @@ function get_solus() {
|
||||||
echo "${URL}/${ISO} ${HASH}"
|
echo "${URL}/${ISO} ${HASH}"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function get_holoiso() {
|
||||||
|
local HASH=""
|
||||||
|
local DATE="20221211"
|
||||||
|
local ISO="HoloISO_${RELEASE}_OfflineInstaller-${DATE}_1636-x86_64.iso"
|
||||||
|
local URL="http://holoiso.itsvixano.me"
|
||||||
|
|
||||||
|
HASH=$(wget -q -O- "${URL}/${ISO}.sha256sum" | cut -d' ' -f1)
|
||||||
|
echo "${URL}/${ISO} ${HASH}"
|
||||||
|
}
|
||||||
|
|
||||||
function get_tails() {
|
function get_tails() {
|
||||||
local ISO=""
|
local ISO=""
|
||||||
local JSON=""
|
local JSON=""
|
||||||
|
|
Loading…
Reference in a new issue