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 linux-headers
which tmux which tmux
neofetch neofetch
powerline powerline-fonts powerline-vim powerline powerline-fonts powerline-vim python-powerline-gitstatus
cinnamon gnome-terminal xorg gdm mate-icon-theme-faenza cinnamon gnome-terminal xorg gdm mate-icon-theme-faenza
bluez bluez-utils blueberry
keepass xdotool keepass xdotool
tlp tlp-rdw tlp tlp-rdw
sshfs curlftpfs sshfs curlftpfs
@ -55,8 +56,13 @@ python3-pip
meld meld
" "
ALL=$COMMON\ $MULTIMEDIA\ $TOOLS\ $PROGRAMMING 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 The followin packages and their required depending packages will be installed:
echo ------------------------------------------------------------------------------ echo ------------------------------------------------------------------------------
echo $ALL echo $ALL
@ -65,13 +71,17 @@ read -r -p "Are you sure? [y/N] " response
echo ------------------------------------------------------------------------------ echo ------------------------------------------------------------------------------
case "$response" in case "$response" in
[yY][eE][sS]|[yY]) [yY][eE][sS]|[yY])
pacman --needed -S $ALL yay --needed -S $ALL
# #
echo echo
echo You might want to execute the following commands: echo You might want to execute the following commands:
echo ------------------------------------------------- echo -------------------------------------------------
echo systemctl enable gdm echo systemctl enable gdm
echo systemctl disable systemd-netword
echo systemctl enable NetworkManager echo systemctl enable NetworkManager
echo systemctl disable wpa_supplicant@xxxx
echo systemctl enable wpa_supplicant
echo systemctl enable bluetooth
echo echo
echo and reboot the system... echo and reboot the system...
;; ;;