A bin folder, holding helpfull scripts and commands
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

apt-extend-mint 1.1KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. #!/bin/sh
  2. #
  3. #
  4. # Additional Packages
  5. COMMON="
  6. joe git tmux
  7. keepass2 xdotool
  8. sshfs curlftpfs openssh-server
  9. fonts-powerline powerline python3-powerline python3-powerline-gitstatus
  10. lib32stdc++6
  11. "
  12. MULTIMEDIA="
  13. kodi kodi-pvr-hts
  14. spotify-client
  15. "
  16. TOOLS="
  17. evolution
  18. gnome-boxes
  19. gvncviewer
  20. texlive-binaries texlive-latex-extra texlive-lang-german texlive-fonts-recommended texstudio
  21. "
  22. PROGRAMMING="
  23. pycodestyle
  24. virtualenv
  25. python-coverage python3-coverage python-jinja2 python3-jinja2
  26. python-wxtools python3-wxgtk4.0
  27. meld
  28. "
  29. ALL=$COMMON\ $MULTIMEDIA\ $TOOLS\ $PROGRAMMING
  30. echo The followin packages and their required depending packages will be installed:
  31. echo ------------------------------------------------------------------------------
  32. echo $ALL
  33. echo ------------------------------------------------------------------------------
  34. read -r -p "Are you sure? [y/N] " response
  35. echo ------------------------------------------------------------------------------
  36. case "$response" in
  37. [yY][eE][sS]|[yY])
  38. sudo apt-get -y install $ALL
  39. ;;
  40. *)
  41. echo Installation aborted!
  42. ;;
  43. esac