From 9725cb186ffdea5ca4b17cc106f99ee119bfed40 Mon Sep 17 00:00:00 2001 From: Phil Clifford Date: Tue, 1 Mar 2022 11:07:50 +0000 Subject: [PATCH] Fix Garuda targets (#400) Fixes #399 Corrected Garuda sources --- quickget | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/quickget b/quickget index 436dc00..a2400d6 100755 --- a/quickget +++ b/quickget @@ -306,7 +306,6 @@ function editions_garuda() { mate \ qtile \ sway \ - wayfire \ xfce } @@ -919,7 +918,11 @@ function get_garuda() { cinnamon|mate) URL="http://mirrors.fossho.st/garuda/iso/community/${EDITION}/${RELEASE}";; *) URL="http://mirrors.fossho.st/garuda/iso/garuda/${EDITION}/${RELEASE}";; esac - ISO="garuda-${EDITION}-linux-zen-${RELEASE}.iso" + case ${EDITION} in + xfce|kde-barebones) ISO="garuda-${EDITION}-linux-lts-${RELEASE}.iso";; + *) ISO="garuda-${EDITION}-linux-zen-${RELEASE}.iso";; + esac + HASH="$(wget -q -O- "${URL}/${ISO}.sha256" | cut -d' ' -f1)" echo "${URL}/${ISO} ${HASH}" }