raspi extend script added

This commit is contained in:
Dirk Alders 2023-09-13 21:41:06 +02:00
parent 79dc87c707
commit bb3fb18730

30
apt-extend-raspi Executable file
View File

@ -0,0 +1,30 @@
#!/bin/sh
#
#
# Additional Packages
COMMON="
zsh zsh-syntax-highlighting zsh-autosuggestions
vim vim-python-jedi vim-autopep8 git tmux
neofetch figlet powerline
"
ALL=$COMMON
echo The followin packages and their required depending packages will be installed:
echo ------------------------------------------------------------------------------
echo $ALL
echo ------------------------------------------------------------------------------
read -r -p "Are you sure? [y/N] " response
echo ------------------------------------------------------------------------------
case "$response" in
[yY][eE][sS]|[yY])
sudo apt-get -y install $ALL
#
echo
echo
;;
*)
echo Installation aborted!
;;
esac