A bin folder, holding helpfull scripts and commands
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

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