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... ;;