A bin folder, holding helpfull scripts and commands
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

apt-extend-mx 1.6KB

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