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";;
|
||||
rebornos) PRETTY_NAME="RebornOS";;
|
||||
rockylinux) PRETTY_NAME="Rocky Linux";;
|
||||
holoiso) PRETTY_NAME="HoloISO";;
|
||||
truenas-core) PRETTY_NAME="TrueNAS Core";;
|
||||
truenas-scale) PRETTY_NAME="TrueNAS Scale";;
|
||||
ubuntu-budgie) PRETTY_NAME="Ubuntu Budgie";;
|
||||
|
@ -216,6 +217,7 @@ function os_support() {
|
|||
siduction \
|
||||
slackware \
|
||||
solus \
|
||||
holoiso \
|
||||
tails \
|
||||
truenas-core \
|
||||
truenas-scale \
|
||||
|
@ -545,6 +547,10 @@ function editions_solus() {
|
|||
echo Budgie GNOME MATE Plasma
|
||||
}
|
||||
|
||||
function releases_holoiso() {
|
||||
echo 4.0
|
||||
}
|
||||
|
||||
function releases_tails() {
|
||||
echo stable
|
||||
}
|
||||
|
@ -1592,6 +1598,16 @@ function get_solus() {
|
|||
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() {
|
||||
local ISO=""
|
||||
local JSON=""
|
||||
|
|
Loading…
Reference in a new issue