don't update system

This commit is contained in:
David Young
2026-03-23 09:47:05 -06:00
parent 2db594499c
commit eac099085a
2 changed files with 21 additions and 19 deletions

View File

@@ -1,6 +1,7 @@
FLATPAKS=(
"io.sourceforge.wsjt.wsjtx"
"com.js8call.JS8Call"
"io.github.foldynl.QLog"
)
for pak in "${FLATPAKS[@]}"; do

View File

@@ -47,29 +47,29 @@ if [ ! -f "packages.conf" ]; then
fi
source packages.conf
echo "Updating system..."
sudo pacman -Syu --noconfirm
# echo "Updating system..."
# sudo pacman -Syu --noconfirm
cd ~/
# Install yay AUR helper if not present
if ! command -v yay &> /dev/null; then
echo "Installing yay AUR helper..."
sudo pacman -S --needed git base-devel --noconfirm
if [[ -d "yay" ]]; then
echo "yay directory already exists, removing it..."
rm -rf yay
fi
echo "Cloning yay repository..."
git clone https://aur.archlinux.org/yay.git
cd yay
echo "Building yay..."
makepkg -si --noconfirm
cd ..
rm -rf yay
else
echo "yay is already installed."
fi
#if ! command -v yay &> /dev/null; then
# echo "Installing yay AUR helper..."
# sudo pacman -S --needed git base-devel --noconfirm
# if [[ -d "yay" ]]; then
# echo "yay directory already exists, removing it..."
# rm -rf yay
# fi
# echo "Cloning yay repository..."
# git clone https://aur.archlinux.org/yay.git
# cd yay
# echo "Building yay..."
# makepkg -si --noconfirm
# cd ..
# rm -rf yay
#else
# echo "yay is already installed."
#fi
echo "Installing system utilities..."
install_packages "${UTILITIES[@]}"
@@ -86,6 +86,7 @@ echo "Installing stand-alone compiled applications..."
. install-compiled.sh
curl -LsSf uvx.sh/not1mm/install.sh | sh
if ! ls /usr/lib/modules/$(uname -r) > /dev/null 2>&1; then
echo "HamPack is installed. A newer kernel has been installed, a reboot is recommended."