initial arch extend script added

This commit is contained in:
Dirk Alders 2023-06-04 19:55:15 +02:00
parent f08ed0b875
commit d0fa24b403

View File

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