diff --git a/install-flatpaks.sh b/install-flatpaks.sh index a3f8e23..db05d66 100755 --- a/install-flatpaks.sh +++ b/install-flatpaks.sh @@ -1,6 +1,7 @@ FLATPAKS=( "io.sourceforge.wsjt.wsjtx" "com.js8call.JS8Call" +"io.github.foldynl.QLog" ) for pak in "${FLATPAKS[@]}"; do diff --git a/install.sh b/install.sh index 7c8c959..3fde07a 100755 --- a/install.sh +++ b/install.sh @@ -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."