Skip to content

Commit

Permalink
Add Miyo Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
zen0bit committed Sep 15, 2023
1 parent c7e91a0 commit 03a3b25
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions quickget
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ function pretty_name() {
linuxmint) PRETTY_NAME="Linux Mint";;
lmde) PRETTY_NAME="Linux Mint Debian Edition";;
mageia) PRETTY_NAME="Mageia";;
miyo) PRETTY_NAME="Miyo Linux";;
mxlinux) PRETTY_NAME="MX Linux";;
netboot) PRETTY_NAME="netboot.xyz";;
netbsd) PRETTY_NAME="NetBSD";;
Expand Down Expand Up @@ -208,6 +209,7 @@ function os_support() {
lmde \
mageia \
manjaro \
miyo \
mxlinux \
netboot \
netbsd \
Expand Down Expand Up @@ -461,6 +463,14 @@ function editions_mageia(){
echo Plasma GNOME Xfce
}

function releases_miyo() {
echo 2022
}

function editions_miyo(){
echo Kwin Deboot-Ceres JWM Openbox MATE
}

function releases_mxlinux(){
echo 21.3
}
Expand Down Expand Up @@ -1503,6 +1513,23 @@ function get_manjaro() {
echo "${URL} ${HASH}"
}

function get_miyo() {
local EDITION="${1:-}"
local HASH=""
local URL="https://sourceforge.net/projects/miyolinux/files/${RELEASE}-Release/${EDITION}"

case ${EDITION} in
Kwin) ISO="miyo-kwin-x86_64-BIOS-20220526.iso";;
Deboot-Ceres) ISO="Deboot-Ceres-x86-64-BIOS-20220415.iso";;
JWM) ISO="miyolinux-jwm-x86_64-BIOS-20220226.iso";;
Openbox) ISO="MiyoLinux-x86_64-BIOS-20220129.iso";;
MATE) ISO="mate-minimal-x86_64-BIOS-20220107.iso";;
esac

HASH=$(wget -q -O- "${URL}/${ISO}.sha256" | cut -d' ' -f1)
echo "${URL}/${ISO} ${HASH}"
}

function get_mxlinux() {
local EDITION="${1:-}"
local HASH=""
Expand Down

0 comments on commit 03a3b25

Please sign in to comment.