32 lines
700 B
Plaintext
32 lines
700 B
Plaintext
# Template file for 'bazzite'
|
|
OSNAME="bazzite"
|
|
PRETTY="bazzite"
|
|
BASEDOF="Fedora SteamOS"
|
|
HOMEPAGE="https://bazzite.gg"
|
|
DESCRIPTION="Container native gaming and a ready-to-game SteamOS like"
|
|
CREDENTIALS="-"
|
|
|
|
function releases_() {
|
|
echo latest
|
|
}
|
|
|
|
function editions_() {
|
|
echo gnome kde
|
|
}
|
|
|
|
function get_() {
|
|
local HASH=""
|
|
local ISO=""
|
|
local URL="https://download.bazzite.gg"
|
|
case ${EDITION} in
|
|
gnome) ISO="bazzite-gnome-stable-amd64.iso";;
|
|
kde) ISO="bazzite-stable-amd64.iso";;
|
|
esac
|
|
HASH=$(web_pipe "${URL}/${ISO}-CHECKSUM" | cut -d' ' -f1)
|
|
echo "${URL}/${ISO} ${HASH}"
|
|
}
|
|
|
|
function specific_tweaks() {
|
|
echo "disk_size=\"64G\"" >> "${CONF_FILE}"
|
|
}
|