From 5f6e18b2cc747a313eba33a446c8b5b15f04b65e Mon Sep 17 00:00:00 2001 From: Sayeed Mahmood Evrenos <138004078+Evren-os@users.noreply.github.com> Date: Sat, 1 Mar 2025 02:56:39 +0600 Subject: [PATCH] fix: remove redundant AVX2 check for Zen Browser installation (#1014) This update removes the AVX2-specific logic from the installZenBrowser function. The Zen Browser team discontinued AVX2-optimized releases due to recurring build issues in GitHub workflows, so we now only install zen-browser-bin from AUR. This change streamlines the installation process. --- core/tabs/applications-setup/browsers/zen-browser.sh | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/core/tabs/applications-setup/browsers/zen-browser.sh b/core/tabs/applications-setup/browsers/zen-browser.sh index 4cd7d932..587db66f 100755 --- a/core/tabs/applications-setup/browsers/zen-browser.sh +++ b/core/tabs/applications-setup/browsers/zen-browser.sh @@ -7,11 +7,7 @@ installZenBrowser() { printf "%b\n" "${YELLOW}Installing Zen Browser...${RC}" case "$PACKAGER" in pacman) - if grep -q avx2 /proc/cpuinfo; then - "$AUR_HELPER" -S --needed --noconfirm zen-browser-avx2-bin - else - "$AUR_HELPER" -S --needed --noconfirm zen-browser-bin - fi + "$AUR_HELPER" -S --needed --noconfirm zen-browser-bin ;; *) checkFlatpak