diff --git a/apt-extend-raspi b/apt-extend-raspi new file mode 100755 index 0000000..c446b5b --- /dev/null +++ b/apt-extend-raspi @@ -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