123456789101112131415161718192021222324252627282930 |
- #!/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
|