From d0fa24b4036cfc0c5efa577b7532bf12cfb416ef Mon Sep 17 00:00:00 2001 From: Dirk Alders Date: Sun, 4 Jun 2023 19:55:15 +0200 Subject: [PATCH] initial arch extend script added --- pacman-extend-arch => yay-extend-arch | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) rename pacman-extend-arch => yay-extend-arch (81%) diff --git a/pacman-extend-arch b/yay-extend-arch similarity index 81% rename from pacman-extend-arch rename to yay-extend-arch index 2bb9368..13a472a 100755 --- a/pacman-extend-arch +++ b/yay-extend-arch @@ -8,8 +8,9 @@ zsh zsh-syntax-highlighting zsh-autosuggestions linux-headers which tmux neofetch -powerline powerline-fonts powerline-vim +powerline powerline-fonts powerline-vim python-powerline-gitstatus cinnamon gnome-terminal xorg gdm mate-icon-theme-faenza +bluez bluez-utils blueberry keepass xdotool tlp tlp-rdw sshfs curlftpfs @@ -55,8 +56,13 @@ python3-pip meld " + ALL=$COMMON\ $MULTIMEDIA\ $TOOLS\ $PROGRAMMING +echo Updating repositories: +echo ---------------------- +yay -Syy +echo echo The followin packages and their required depending packages will be installed: echo ------------------------------------------------------------------------------ echo $ALL @@ -65,13 +71,17 @@ read -r -p "Are you sure? [y/N] " response echo ------------------------------------------------------------------------------ case "$response" in [yY][eE][sS]|[yY]) - pacman --needed -S $ALL + yay --needed -S $ALL # echo echo You might want to execute the following commands: echo ------------------------------------------------- echo systemctl enable gdm + echo systemctl disable systemd-netword echo systemctl enable NetworkManager + echo systemctl disable wpa_supplicant@xxxx + echo systemctl enable wpa_supplicant + echo systemctl enable bluetooth echo echo and reboot the system... ;;