DistroHopper/public/kdeneon
2026-05-27 17:00:06 +02:00

36 lines
925 B
Text

# Template file for 'kdeneon'
OSNAME="kdeneon"
PRETTY="KDE Neon"
LOGO=""
ICON="kdeneon.svg"
ICON_ONLINE="https://distrowatch.com/images/yvzhuwbpy/kdeneon.png"
CATEGORY="Beginner"
BASEDOF="Debian Ubuntu"
DESCRIPTION="Latest and greatest of KDE community software packaged on a rock-solid base"
HOMEPAGE="https://neon.kde.org"
CREDENTIALS="-"
GPG=""
RSS=""
DW=""
MAGNET=""
CHAT=""
RELEASES="user unstable testing developer"
QEMU_ARCH="amd64"
releases_() {
echo user testing unstable developer
}
get_() {
local HASH=""
local ISO=""
local URL="https://files.kde.org/neon/images/${RELEASE}/current"
if [ "$RELEASE" == 'developer' ]; then
ISO=$(web_pipe "${URL}/neon-unstable-${RELEASE}-current.sha256sum" | cut -d' ' -f3-)
else
ISO=$(web_pipe "${URL}/neon-${RELEASE}-current.sha256sum" | cut -d' ' -f3-)
fi
HASH=$(web_pipe "${URL}/neon-${RELEASE}-current.sha256sum" | cut -d' ' -f1)
echo "${URL}/${ISO} ${HASH}"
}