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-mint 1.2KB

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