A bin folder, holding helpfull scripts and commands
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

apt-extend-raspi 753B

123456789101112131415161718192021222324252627282930
  1. #!/bin/sh
  2. #
  3. #
  4. # Additional Packages
  5. COMMON="
  6. zsh zsh-syntax-highlighting zsh-autosuggestions
  7. vim vim-python-jedi vim-autopep8 git tmux
  8. neofetch figlet powerline
  9. "
  10. ALL=$COMMON
  11. echo The followin packages and their required depending packages will be installed:
  12. echo ------------------------------------------------------------------------------
  13. echo $ALL
  14. echo ------------------------------------------------------------------------------
  15. read -r -p "Are you sure? [y/N] " response
  16. echo ------------------------------------------------------------------------------
  17. case "$response" in
  18. [yY][eE][sS]|[yY])
  19. sudo apt-get -y install $ALL
  20. #
  21. echo
  22. echo
  23. ;;
  24. *)
  25. echo Installation aborted!
  26. ;;
  27. esac