diff --git a/install/firewall.sh b/install/firewall.sh index f12fe8f..5510434 100644 --- a/install/firewall.sh +++ b/install/firewall.sh @@ -1,7 +1,7 @@ #!/bin/bash if ! command -v ufw &>/dev/null; then - yay -Sy --noconfirm --needed ufw ufw-docker + yay -S --noconfirm --needed ufw ufw-docker # Allow nothing in, everything out sudo ufw default deny incoming diff --git a/install/fonts.sh b/install/fonts.sh index 87afc3d..b1a7ea0 100644 --- a/install/fonts.sh +++ b/install/fonts.sh @@ -1,9 +1,9 @@ #!/bin/bash if [ -z "$OMARCHY_BARE" ]; then - yay -Sy --noconfirm --needed ttf-font-awesome noto-fonts noto-fonts-emoji noto-fonts-cjk noto-fonts-extra + yay -S --noconfirm --needed ttf-font-awesome noto-fonts noto-fonts-emoji noto-fonts-cjk noto-fonts-extra else - yay -Sy --noconfirm --needed ttf-font-awesome noto-fonts noto-fonts-emoji + yay -S --noconfirm --needed ttf-font-awesome noto-fonts noto-fonts-emoji fi mkdir -p ~/.local/share/fonts diff --git a/install/nvidia.sh b/install/nvidia.sh index c78d3c2..0f76f50 100644 --- a/install/nvidia.sh +++ b/install/nvidia.sh @@ -47,7 +47,7 @@ if [ -n "$(lspci | grep -i 'nvidia')" ]; then "qt6-wayland" ) - yay -Syu --needed --noconfirm "${PACKAGES_TO_INSTALL[@]}" + yay -S --needed --noconfirm "${PACKAGES_TO_INSTALL[@]}" # Configure modprobe for early KMS echo "options nvidia_drm modeset=1" | sudo tee /etc/modprobe.d/nvidia.conf >/dev/null