mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2026-06-14 09:32:21 +00:00
26 lines
774 B
Text
26 lines
774 B
Text
# Template file for 'afagos'
|
|
OSNAME=afagos
|
|
PRETTY="AfagOS"
|
|
LOGO=""
|
|
ICON="afagos.png"
|
|
ICON_ONLINE="https://distrowatch.com/images/yvzhuwbpy/afagos.png"
|
|
CATEGORY="Desktop, Live Medium"
|
|
BASEDOF="Void"
|
|
DESCRIPTION="Sister project of AgarimOS featuring a vanilla KDE Plasma desktop"
|
|
HOMEPAGE="https://sourceforge.net/projects/afagos"
|
|
CREDENTIALS="anon:voidlinux,root:voidlinux"
|
|
GPG=""
|
|
RSS="https://sourceforge.net/projects/afagos/rss?path=/"
|
|
DW=""
|
|
|
|
function releases_() {
|
|
echo latest
|
|
}
|
|
|
|
function get_() {
|
|
local ISO
|
|
ISO=$(web_pipe "https://sourceforge.net/projects/afagos/rss?path=/" \
|
|
| grep 'title><!\[CDATA' | cut -d'[' -f3 | cut -d']' -f1 | grep '\.iso' | head -1 | cut -d'/' -f3)
|
|
local URL="https://sourceforge.net/projects/afagos/files/PLASMA"
|
|
echo "${URL}/${ISO}"
|
|
}
|