Readd GabeeOSLinux

This commit is contained in:
zenobit 2025-02-17 05:16:55 +01:00
parent 861ba90ecc
commit 0cf90c50c1
2 changed files with 40 additions and 0 deletions

31
actions/gabeeos Normal file
View File

@ -0,0 +1,31 @@
# Template file for 'gabeeos'
OSNAME=gabeeos
PRETTY="GabeeOSLinux"
BASEDOF="Void"
DESCRIPTION="Brings the necessary software to satisfy the daily needs of an end user in a simple and aesthetically pleasing desktop environment."
HOMEPAGE="https://sourceforge.net/projects/gabeeoslinux/"
CREDENTIALS="anon:voidlinux,root:voidlinux"
function releases_() {
echo release beta
}
function editions_() {
echo Openbox Qtile
}
function get_() {
local HASH=""
case "${RELEASE}" in
release)
REL="Release-2024"
;;
beta)
REL="beta"
;;
esac
ISO="gabeeOSLinux-Openbox-Cherry-x86_64-6.1.25_1-20230502.iso"
URL="https://sourceforge.net/projects/gabeeoslinux/files/Distro/${EDITION}/${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)"
echo "${URL}/${ISO}"
}

9
public/gabeeos Normal file
View File

@ -0,0 +1,9 @@
# Template file for 'gabeeos'
OSNAME="gabeeos"
PRETTY="GabeeOSLinux"
BASEDOF="Void"
DESCRIPTION="Brings the necessary software to satisfy the daily needs of an end user in a simple and aesthetically pleasing desktop environment."
HOMEPAGE="https://sourceforge.net/projects/gabeeoslinux/"
CREDENTIALS="anon:voidlinux,root:voidlinux"
RELEASES="release beta"
EDITIONS="Qtile Openbox"