From 85b3b057dda8a8840027e78d22aaf33051dae7e5 Mon Sep 17 00:00:00 2001 From: Marco Gallegos Date: Thu, 30 Oct 2025 15:01:21 -0600 Subject: [PATCH] Remove Google Chrome installation function Removed the installation function for Google Chrome. --- omarchy_zsh_setup/omarchy-setup.sh | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/omarchy_zsh_setup/omarchy-setup.sh b/omarchy_zsh_setup/omarchy-setup.sh index ab0fbe8..af22829 100644 --- a/omarchy_zsh_setup/omarchy-setup.sh +++ b/omarchy_zsh_setup/omarchy-setup.sh @@ -285,27 +285,6 @@ install_oh_my_posh() { fi } -install_google_chrome() { - step "Instalando Google Chrome" - - for chromium_pkg in omarchy-chromium chromium; do - if check_installed "$chromium_pkg"; then - info "Removiendo $chromium_pkg..." - sudo pacman -Rns --noconfirm "$chromium_pkg" 2>/dev/null || true - fi - done - - if command -v google-chrome-stable &> /dev/null; then - success "Google Chrome ya está instalado" - else - info "Instalando Google Chrome desde AUR..." - if yay -S --noconfirm google-chrome; then - success "Google Chrome instalado" - else - error "Fallo al instalar Google Chrome" - fi - fi -} install_localsend() { step "Instalando LocalSend"