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

47 lines
2.1 KiB
Text

# Template file for 'gabeeos'
OSNAME="gabee"
PRETTY="gabeeOSLinux"
LOGO=""
ICON="gabeeos.svg"
ICON_ONLINE="https://distrowatch.com/images/yvzhuwbpy/gabee.png"
CATEGORY="Desktop, Live Medium"
BASEDOF="Void"
DESCRIPTION="gabeeOSLinux is a Void-based, rolling-release Linux distribution designed for general desktop use. It offers various window managers and Wayland compositors, including Hyprland, i3, Openbox and Qtile."
HOMEPAGE="https://gabeeoslinux.sourceforge.io"
CREDENTIALS="anon:voidlinux,root:voidlinux"
GPG=""
RSS=""
DW=""
MAGNET=""
CHAT=""
DW_ARCHITECTURE="x86_64"
DW_CATEGORY="Desktop, Live Medium"
DW_DESKTOP="Hyprland, i3, Openbox, Qtile"
DW_URL="https://distrowatch.com/gabee"
RELEASES="latest"
EDITIONS="Hyprland i3-gaps Qtile"
QEMU_ARCH="amd64"
releases_() {
echo latest
}
editions_() {
echo $(web_pipe "https://sourceforge.net/projects/gabeeoslinux/rss?path=/Distro/" | grep 'title><!\[CDATA' | cut -d'[' -f3 | cut -d']' -f1 | grep '\.iso' | cut -d'/' -f3 | sort | uniq)
}
get_() {
local HASH=""
if [ "${EDITION}" == 'i3-gaps' ]; then
REL=$(web_pipe "https://sourceforge.net/projects/gabeeoslinux/rss?path=/Distro/" | grep 'title><!\[CDATA' | cut -d'[' -f3 | cut -d']' -f1 | grep '\.iso' | grep "${EDITION}" | head -1 | cut -d'/' -f2,3)
ISO=$(web_pipe "https://sourceforge.net/projects/gabeeoslinux/rss?path=/Distro/" | grep 'title><!\[CDATA' | cut -d'[' -f3 | cut -d']' -f1 | grep '\.iso' | grep "${EDITION}" | head -1 | cut -d'/' -f4)
else
REL=$(web_pipe "https://sourceforge.net/projects/gabeeoslinux/rss?path=/Distro/" | grep 'title><!\[CDATA' | cut -d'[' -f3 | cut -d']' -f1 | grep '\.iso' | grep "${EDITION}" | head -1 | cut -d'/' -f2,3,4)
ISO=$(web_pipe "https://sourceforge.net/projects/gabeeoslinux/rss?path=/Distro/" | grep 'title><!\[CDATA' | cut -d'[' -f3 | cut -d']' -f1 | grep '\.iso' | grep "${EDITION}" | head -1 | cut -d'/' -f5)
fi
URL="https://sourceforge.net/projects/gabeeoslinux/files/${REL}"
#ISO=$(web_pipe "https://sourceforge.net/projects/gabeeoslinux/rss?path=/" | grep 'title><!\[CDATA' | cut -d'[' -f3 | cut -d']' -f1 | grep '\.iso' | cut -d'/' -f5 | grep "${EDITION}" | head -1)
# No hash provided
echo "${URL}/${ISO}"
}