mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2026-06-14 17:36:40 +00:00
17 lines
No EOL
537 B
Text
17 lines
No EOL
537 B
Text
INFO="KDE Neon|Debian,Ubuntu||https://neon.kde.org/|Latest and greatest of KDE community software packaged on a rock-solid base.";;
|
|
|
|
function releases_kdeneon() {
|
|
echo user testing unstable developer
|
|
}
|
|
|
|
function get_kdeneon() {
|
|
local HASH=""
|
|
local ISO=""
|
|
local URL="https://files.kde.org/neon/images/${RELEASE}/current"
|
|
|
|
ISO=$(wget -q -O- "${URL}/neon-${RELEASE}-current.sha256sum" | cut -d' ' -f3-)
|
|
HASH=$(wget -q -O- "${URL}/neon-${RELEASE}-current.sha256sum" | cut_1)
|
|
echo "${URL}/${ISO} ${HASH}"
|
|
}
|
|
|
|
functi |