mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2026-06-14 17:36:40 +00:00
26 lines
692 B
Text
26 lines
692 B
Text
tuxedo-os
|
|
|
|
tuxedo-os current: https://os.tuxedocomputers.com/TUXEDO-OS_current.iso
|
|
|
|
# Template file for 'tuxedo-os'
|
|
OSNAME="tuxedo-os"
|
|
PRETTY="Tuxedo OS"
|
|
BASEDOF="Ubuntu"
|
|
DESCRIPTION="KDE Ubuntu LTS designed to go with their Linux hardware"
|
|
HOMEPAGE="https://www.tuxedocomputers.com"
|
|
CREDENTIALS="-"
|
|
|
|
|
|
RELEASES="current"
|
|
|
|
|
|
function get_() {
|
|
local HASH=""
|
|
local ISO=""
|
|
local URL="https://os.tuxedocomputers.com"
|
|
ISO="$(web_pipe "https://os.tuxedocomputers.com/" | grep -m 1 current.iso | cut -d '=' -f 4 | cut -d '"' -f 2)"
|
|
HASH="$(web_pipe "https://os.tuxedocomputers.com/checksums/${ISO}.sha256" | cut -d ' ' -f 1)"
|
|
echo "${URL}/${ISO} ${HASH}"
|
|
}
|
|
|
|
|