mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2026-06-14 09:32:21 +00:00
26 lines
790 B
Text
26 lines
790 B
Text
# Template file for 'abeiros'
|
|
OSNAME=abeiros
|
|
PRETTY="AbeirOS"
|
|
LOGO=""
|
|
ICON=""
|
|
ICON_ONLINE="https://distrowatch.com/images/yvzhuwbpy/abeiros.png"
|
|
CATEGORY="Desktop, Live Medium"
|
|
BASEDOF="Void"
|
|
DESCRIPTION="Like AgarimOS and AfagOS, AbeirOS is based on Void Linux, and it is created using void-mklive"
|
|
HOMEPAGE="https://abeiros.sourceforge.io"
|
|
CREDENTIALS="anon:voidlinux,root:voidlinux"
|
|
GPG=""
|
|
RSS="https://sourceforge.net/projects/abeiros/rss?path=/"
|
|
DW=""
|
|
|
|
function releases_() {
|
|
echo latest
|
|
}
|
|
|
|
function get_() {
|
|
local ISO
|
|
ISO=$(web_pipe "https://sourceforge.net/projects/abeiros/rss?path=/" \
|
|
| grep 'title><!\[CDATA' | cut -d'[' -f3 | cut -d']' -f1 | grep '\.iso' | head -1 | cut -d'/' -f3)
|
|
local URL="https://sourceforge.net/projects/abeiros/files/PLASMA"
|
|
echo "${URL}/${ISO}"
|
|
}
|