mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2026-06-14 09:32:21 +00:00
42 lines
966 B
Text
42 lines
966 B
Text
# Template file for 'trisquel'
|
|
OSNAME="trisquel"
|
|
PRETTY="Trisquel"
|
|
LOGO=" "
|
|
ICON="trisquel.png"
|
|
ICON_ONLINE="https://distrowatch.com/images/yvzhuwbpy/trisquel.png"
|
|
CATEGORY="Beginner"
|
|
BASEDOF="Ubuntu"
|
|
DESCRIPTION="Fully free operating system for home users, small enterprises and educational centers"
|
|
HOMEPAGE="https://trisquel.info"
|
|
CREDENTIALS="-"
|
|
GPG=""
|
|
RSS=""
|
|
DW=""
|
|
MAGNET=""
|
|
CHAT=""
|
|
|
|
RELEASES="11.0 10.0.1"
|
|
EDITIONS="kde lxde mate sugar"
|
|
QEMU_ARCH="amd64"
|
|
|
|
releases_() {
|
|
echo 11.0 10.0.1
|
|
}
|
|
|
|
editions_() {
|
|
echo mate lxde kde sugar
|
|
}
|
|
|
|
get_() {
|
|
local HASH=""
|
|
local ISO=""
|
|
local URL="https://mirrors.ocf.berkeley.edu/trisquel-images"
|
|
case ${EDITION} in
|
|
mate) ISO="trisquel_${RELEASE}_amd64.iso";;
|
|
lxde) ISO="trisquel-mini_${RELEASE}_amd64.iso";;
|
|
kde) ISO="triskel_${RELEASE}_amd64.iso";;
|
|
sugar) ISO="trisquel-sugar_${RELEASE}_amd64.iso";;
|
|
esac
|
|
HASH=$(web_pipe "${URL}/${ISO}.sha1" | grep "${ISO}" | cut -d' ' -f1)
|
|
echo "${URL}/${ISO} ${HASH}"
|
|
}
|