From 143226f99123d7e1e9efcebc4b8883e43dd5bff2 Mon Sep 17 00:00:00 2001 From: Phil Clifford Date: Sun, 11 Aug 2024 19:14:08 +0100 Subject: [PATCH 1/2] fix(bottom): match standard bottom instead of musl version --- 01-main/packages/bottom | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01-main/packages/bottom b/01-main/packages/bottom index 0d74862d2..5ecc56a69 100644 --- a/01-main/packages/bottom +++ b/01-main/packages/bottom @@ -1,7 +1,7 @@ DEFVER=1 get_github_releases "ClementTsang/bottom" "latest" if [ "${ACTION}" != "prettylist" ]; then - URL=$(grep "browser_download_url.*${HOST_ARCH}\.deb\"" "${CACHE_FILE}" | head -n1 | cut -d'"' -f4) + URL=$(grep "browser_download_url.*bottom_.*${HOST_ARCH}\.deb\"" "${CACHE_FILE}" | head -n1 | cut -d'"' -f4) VERSION_PUBLISHED="$(echo "${URL}" | cut -d'/' -f8)" fi PRETTY_NAME="bottom" From 4aa40436881d1d18437cbf8d16711b0725b0876a Mon Sep 17 00:00:00 2001 From: Phil Clifford Date: Sun, 11 Aug 2024 19:15:34 +0100 Subject: [PATCH 2/2] feat(bottom): add arm support --- 01-main/packages/bottom | 1 + 1 file changed, 1 insertion(+) diff --git a/01-main/packages/bottom b/01-main/packages/bottom index 5ecc56a69..d39291b80 100644 --- a/01-main/packages/bottom +++ b/01-main/packages/bottom @@ -1,4 +1,5 @@ DEFVER=1 +ARCHS_SUPPORTED="amd64 armhf arm64" get_github_releases "ClementTsang/bottom" "latest" if [ "${ACTION}" != "prettylist" ]; then URL=$(grep "browser_download_url.*bottom_.*${HOST_ARCH}\.deb\"" "${CACHE_FILE}" | head -n1 | cut -d'"' -f4)