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=( FLATPAKS=(
"io.sourceforge.wsjt.wsjtx" "io.sourceforge.wsjt.wsjtx"
"com.js8call.JS8Call" "com.js8call.JS8Call"
"io.github.foldynl.QLog"
) )
for pak in "${FLATPAKS[@]}"; do for pak in "${FLATPAKS[@]}"; do

View File

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