mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2026-06-14 17:36:40 +00:00
19 lines
758 B
Text
19 lines
758 B
Text
INFO="Spiral Linux|Debian||https://spirallinux.github.io/|Selection of Linux spins built from Debian GNU/Linux, with a focus on simplicity and out-of-the-box usability across all the major desktop environments.";;
|
|
|
|
function releases_spirallinux() {
|
|
echo latest
|
|
}
|
|
|
|
function editions_spirallinux() {
|
|
echo Plasma XFCE Mate LXQt Gnome Budgie Cinnamon Builder
|
|
}
|
|
|
|
function get_spirallinux() {
|
|
local EDITION="${1:-}"
|
|
local HASH=""
|
|
local ISO="SpiralLinux_${EDITION}_12.231005_x86-64.iso"
|
|
local URL="https://sourceforge.net/projects/spirallinux/files/12.231005"
|
|
|
|
HASH=$(wget -q -O- 'https://sourceforge.net/projects/spirallinux/rss?path=/' | grep "${ISO}" | grep 'md5' | cut -d'<' -f3 | cut -d'>' -f2)
|
|
echo "${URL}/${ISO}" "${HASH}"
|
|
}
|