Readd AgarimOS

This commit is contained in:
zenobit 2025-02-17 03:23:31 +01:00
parent 003ef7bc4f
commit 9d1bd6ddf3
2 changed files with 32 additions and 0 deletions

23
actions/agarimos Normal file
View File

@ -0,0 +1,23 @@
# Template file for 'agarimos'
OSNAME=agarimos
PRETTY="AgarimOS"
BASEDOF="Void"
DESCRIPTION="Includes a minimum set of applications so you can build your system on your own."
HOMEPAGE="https://sourceforge.net/projects/agarimos"
CREDENTIALS="anon:voidlinux,root:voidlinux"
function releases_() {
echo latest
}
function editions_() {
echo plasma xfce4 cinnamon lxqt-kwin gnome
}
function get_() {
local REL=$(echo "${EDITION}" | tr '[:lower:]' '[:upper:]')
local ISOS=$(web_pipe "https://sourceforge.net/projects/agarimos/rss?path=/" | grep 'title><!\[CDATA' | cut -d'[' -f3 | cut -d']' -f1 | grep '.iso')
local URL="https://sourceforge.net/projects/agarimos/files/${REL}"
local ISO=$(echo "${ISOS}" | grep "${REL}" | cut -d'/' -f3)
echo "${URL}/${ISO}"
}

9
public/agarimos Normal file
View File

@ -0,0 +1,9 @@
# Template file for 'agarimos'
OSNAME="agarimos"
PRETTY="AgarimOS"
BASEDOF="Void"
DESCRIPTION="Includes a minimum set of applications so you can build your system on your own."
HOMEPAGE="https://sourceforge.net/projects/agarimos"
CREDENTIALS="anon:voidlinux,root:voidlinux"
RELEASES="latest"
EDITIONS="xfce4 plasma lxqt-kwin gnome cinnamon"