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.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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. photocollage
  18. ardour ubuntustudio-controls calf-plugins eq10q fluid-soundfont-gm fluid-soundfont-gs lame
  19. "
  20. TOOLS="
  21. evolution
  22. gnuplot
  23. gnome-boxes
  24. gvncviewer
  25. texlive-binaries texlive-latex-extra texlive-lang-german texlive-fonts-recommended texstudio
  26. gimp
  27. "
  28. PROGRAMMING="
  29. pycodestyle
  30. virtualenv
  31. python-coverage python3-coverage python-jinja2 python3-jinja2
  32. python-wxtools python3-wxgtk4.0
  33. python3-evdev python3-serial
  34. python3-sphinx python3-sphinx-rtd-theme
  35. meld
  36. retext
  37. "
  38. ALL=$COMMON\ $MULTIMEDIA\ $TOOLS\ $PROGRAMMING
  39. echo The followin packages and their required depending packages will be installed:
  40. echo ------------------------------------------------------------------------------
  41. echo $ALL
  42. echo ------------------------------------------------------------------------------
  43. read -r -p "Are you sure? [y/N] " response
  44. echo ------------------------------------------------------------------------------
  45. case "$response" in
  46. [yY][eE][sS]|[yY])
  47. sudo apt-get -y install $ALL
  48. ;;
  49. *)
  50. echo Installation aborted!
  51. ;;
  52. esac