bin/apt-extend-raspi

31 lines
753 B
Plaintext
Raw Normal View History

2023-09-13 21:41:06 +02:00
#!/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